MltProducer.{h,cpp}, mltpp.i: remove Producer::get_frame that is unncessary and intro...
[melted] / mlt++ / src / MltProducer.cpp
index e98e513..39a93db 100644 (file)
@@ -190,12 +190,3 @@ void Producer::optimise( )
 {
        mlt_producer_optimise( get_producer( ) );
 }
-
-Frame* Producer::get_frame( int index )
-{
-       mlt_frame f = NULL;
-       int result = get_producer()->get_frame( get_producer(), &f, index );
-       if ( f )
-               return new Frame( f );
-       return NULL;
-}