From: lilo_booter Date: Tue, 12 Jul 2005 14:14:51 +0000 (+0000) Subject: producer_vorbis.c X-Git-Url: http://research.m1stereo.tv/gitweb?a=commitdiff_plain;h=0029e65e7570def50920e6cc094a9e1c9b7d9a9b;p=melted producer_vorbis.c + Fix for non-zero in point git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@758 d19143bc-622f-0410-bfdd-b5b2a6649095 --- diff --git a/src/modules/vorbis/producer_vorbis.c b/src/modules/vorbis/producer_vorbis.c index 951d95f..744ef97 100644 --- a/src/modules/vorbis/producer_vorbis.c +++ b/src/modules/vorbis/producer_vorbis.c @@ -307,10 +307,10 @@ static int producer_get_frame( mlt_producer this, mlt_frame_ptr frame, int index *frame = mlt_frame_init( ); // Update timecode on the frame we're creating - mlt_frame_set_position( *frame, mlt_producer_position( this ) ); + mlt_frame_set_position( *frame, mlt_producer_frame( this ) ); // Set the position of this producer - mlt_properties_set_position( MLT_FRAME_PROPERTIES( *frame ), "vorbis_position", mlt_producer_position( this ) ); + mlt_properties_set_position( MLT_FRAME_PROPERTIES( *frame ), "vorbis_position", mlt_producer_frame( this ) ); // Set up the audio mlt_frame_push_audio( *frame, this );