mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-15 03:34:56 +00:00
10l (segfault fix)
Originally committed as revision 3029 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a4d36c1113
commit
2de28abbfd
3
ffmpeg.c
3
ffmpeg.c
@ -1422,16 +1422,17 @@ static int av_encode(AVFormatContext **output_files,
|
|||||||
ost->padleft = frame_padleft;
|
ost->padleft = frame_padleft;
|
||||||
ost->padbottom = frame_padbottom;
|
ost->padbottom = frame_padbottom;
|
||||||
ost->padright = frame_padright;
|
ost->padright = frame_padright;
|
||||||
|
avcodec_get_frame_defaults(&ost->pict_tmp);
|
||||||
if( avpicture_alloc( (AVPicture*)&ost->pict_tmp, PIX_FMT_YUV420P,
|
if( avpicture_alloc( (AVPicture*)&ost->pict_tmp, PIX_FMT_YUV420P,
|
||||||
codec->width, codec->height ) )
|
codec->width, codec->height ) )
|
||||||
goto fail;
|
goto fail;
|
||||||
} else {
|
} else {
|
||||||
ost->video_resample = 1;
|
ost->video_resample = 1;
|
||||||
ost->video_crop = 0; // cropping is handled as part of resample
|
ost->video_crop = 0; // cropping is handled as part of resample
|
||||||
|
avcodec_get_frame_defaults(&ost->pict_tmp);
|
||||||
if( avpicture_alloc( (AVPicture*)&ost->pict_tmp, PIX_FMT_YUV420P,
|
if( avpicture_alloc( (AVPicture*)&ost->pict_tmp, PIX_FMT_YUV420P,
|
||||||
codec->width, codec->height ) )
|
codec->width, codec->height ) )
|
||||||
goto fail;
|
goto fail;
|
||||||
avcodec_get_frame_defaults(&ost->pict_tmp);
|
|
||||||
|
|
||||||
ost->img_resample_ctx = img_resample_full_init(
|
ost->img_resample_ctx = img_resample_full_init(
|
||||||
ost->st->codec.width, ost->st->codec.height,
|
ost->st->codec.width, ost->st->codec.height,
|
||||||
|
Loading…
Reference in New Issue
Block a user