Class rework and simplification
[melted] / mlt++ / src / MltPlaylist.h
1 /**
2 * MltPlaylist.h - MLT Wrapper
3 * Copyright (C) 2004-2005 Charles Yates
4 * Author: Charles Yates <charles.yates@pandora.be>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as published
8 * by the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21 #ifndef _MLTPP_PLAYLIST_H_
22 #define _MLTPP_PLAYLIST_H_
23
24 #include <framework/mlt.h>
25
26 #include "MltProducer.h"
27
28 namespace Mlt
29 {
30 class Producer;
31 class Service;
32 class Playlist;
33
34 class ClipInfo
35 {
36 public:
37 ClipInfo( mlt_playlist_clip_info *info );
38 ClipInfo( Playlist &playlist, int i );
39 ~ClipInfo( );
40 int clip;
41 Producer *producer;
42 Service *service;
43 mlt_position start;
44 char *resource;
45 mlt_position frame_in;
46 mlt_position frame_out;
47 mlt_position frame_count;
48 mlt_position length;
49 float fps;
50 };
51
52 class Playlist : public Producer
53 {
54 private:
55 bool destroy;
56 mlt_playlist instance;
57 public:
58 Playlist( );
59 Playlist( Playlist &playlist );
60 Playlist( mlt_playlist playlist );
61 virtual ~Playlist( );
62 virtual mlt_playlist get_playlist( );
63 mlt_producer get_producer( );
64 int count( );
65 int clear( );
66 int append( Producer &producer, mlt_position in = -1, mlt_position out = -1 );
67 int blank( mlt_position length );
68 mlt_position clip( mlt_whence whence, int index );
69 int current_clip( );
70 Producer *current( );
71 ClipInfo *clip_info( int index );
72 int insert( Producer &producer, int where, mlt_position in = -1, mlt_position out = -1 );
73 int remove( int where );
74 int move( int from, int to );
75 int resize_clip( int clip, mlt_position in, mlt_position out );
76 };
77 }
78
79 #endif