westley/libxml2 mods, mcdv/mpeg release integration
[melted] / src / modules / ffmpeg / consumer_ffmpeg.c
index 11f72b7..da11800 100644 (file)
@@ -170,7 +170,7 @@ static int consumer_play_audio( consumer_ffmpeg this, mlt_frame frame, int init_
                while ( bytes > ( sizeof( this->audio_buffer) - this->audio_avail ) )
                        pthread_cond_wait( &this->audio_cond, &this->audio_mutex );
                mlt_properties properties = mlt_frame_properties( frame );
-               if ( mlt_properties_get_double( properties, "speed" ) == 1 )
+               if ( mlt_properties_get_double( properties, "_speed" ) == 1 )
                        memcpy( &this->audio_buffer[ this->audio_avail ], pcm, bytes );
                else
                        memset( &this->audio_buffer[ this->audio_avail ], 0, bytes );