Commit 118d418c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

transcode: fix parameter warning

parent 65a29b5a
...@@ -656,9 +656,9 @@ void transcode_video_close( sout_stream_t *p_stream, ...@@ -656,9 +656,9 @@ void transcode_video_close( sout_stream_t *p_stream,
filter_chain_Delete( id->p_uf_chain ); filter_chain_Delete( id->p_uf_chain );
} }
static void OutputFrame( sout_stream_sys_t *p_sys, picture_t *p_pic, sout_stream_t *p_stream, sout_stream_id_sys_t *id, block_t **out ) static void OutputFrame( sout_stream_t *p_stream, picture_t *p_pic, sout_stream_id_sys_t *id, block_t **out )
{ {
sout_stream_sys_t *p_sys = p_stream->p_sys;
picture_t *p_pic2 = NULL; picture_t *p_pic2 = NULL;
const mtime_t original_date = p_pic->date; const mtime_t original_date = p_pic->date;
bool b_need_duplicate=false; bool b_need_duplicate=false;
...@@ -931,7 +931,7 @@ int transcode_video_process( sout_stream_t *p_stream, sout_stream_id_sys_t *id, ...@@ -931,7 +931,7 @@ int transcode_video_process( sout_stream_t *p_stream, sout_stream_id_sys_t *id,
if( !p_user_filtered_pic ) if( !p_user_filtered_pic )
break; break;
OutputFrame( p_sys, p_user_filtered_pic, p_stream, id, out ); OutputFrame( p_stream, p_user_filtered_pic, id, out );
p_filtered_pic = NULL; p_filtered_pic = NULL;
} }
......
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