Commit d284e14f authored by Ilkka Ollakka's avatar Ilkka Ollakka Committed by Jean-Baptiste Kempf

transcode: typo

(cherry picked from commit 7a081904)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 11f1b1a7
...@@ -771,7 +771,7 @@ int transcode_video_process( sout_stream_t *p_stream, sout_stream_id_t *id, ...@@ -771,7 +771,7 @@ int transcode_video_process( sout_stream_t *p_stream, sout_stream_id_t *id,
{ {
/* We can't modify the picture, we need to duplicate it */ /* We can't modify the picture, we need to duplicate it */
p_pic2 = video_new_buffer_decoder( id->p_decoder ); p_pic2 = video_new_buffer_decoder( id->p_decoder );
if( unlikely( p_pic2 != NULL ) ) if( likely( p_pic2 != NULL ) )
{ {
picture_Copy( p_pic2, p_pic ); picture_Copy( p_pic2, p_pic );
p_pic2->date = i_pts; p_pic2->date = i_pts;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment