Commit 7a43f27a authored by Gildas Bazin's avatar Gildas Bazin

* modules/stream_out/transcode.c: compilation fix for latest ffmpeg cvs.

parent c6d56914
...@@ -1620,16 +1620,23 @@ static int transcode_video_ffmpeg_process( sout_stream_t *p_stream, ...@@ -1620,16 +1620,23 @@ static int transcode_video_ffmpeg_process( sout_stream_t *p_stream,
avpicture_fill( (AVPicture*)id->p_ff_pic_tmp2, buf, avpicture_fill( (AVPicture*)id->p_ff_pic_tmp2, buf,
id->i_inter_pixfmt, id->i_inter_pixfmt,
id->f_dst.video.i_width, id->f_dst.video.i_height ); id->f_dst.video.i_width,
id->f_dst.video.i_height );
id->p_vresample = id->p_vresample =
img_resample_full_init( id->f_dst.video.i_width, img_resample_full_init( id->f_dst.video.i_width,
id->f_dst.video.i_height, id->f_dst.video.i_height,
id->ff_dec_c->width, id->ff_dec_c->height, id->ff_dec_c->width,
id->ff_dec_c->height,
p_stream->p_sys->i_crop_top, p_stream->p_sys->i_crop_top,
p_stream->p_sys->i_crop_bottom, p_stream->p_sys->i_crop_bottom,
p_stream->p_sys->i_crop_left, p_stream->p_sys->i_crop_left,
p_stream->p_sys->i_crop_right ); p_stream->p_sys->i_crop_right
#if LIBAVCODEC_BUILD >= 4708
,0, 0, 0, 0 );
#else
);
#endif
} }
img_resample( id->p_vresample, (AVPicture*)id->p_ff_pic_tmp2, img_resample( id->p_vresample, (AVPicture*)id->p_ff_pic_tmp2,
......
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