mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Fix "-aspect" when "-pad*" is used
Originally committed as revision 5935 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
dbdae6ec54
commit
e7268d51af
2
ffmpeg.c
2
ffmpeg.c
@ -3032,7 +3032,7 @@ static void new_video_stream(AVFormatContext *oc)
|
|||||||
|
|
||||||
video_enc->width = frame_width + frame_padright + frame_padleft;
|
video_enc->width = frame_width + frame_padright + frame_padleft;
|
||||||
video_enc->height = frame_height + frame_padtop + frame_padbottom;
|
video_enc->height = frame_height + frame_padtop + frame_padbottom;
|
||||||
video_enc->sample_aspect_ratio = av_d2q(frame_aspect_ratio*frame_height/frame_width, 255);
|
video_enc->sample_aspect_ratio = av_d2q(frame_aspect_ratio*video_enc->height/video_enc->width, 255);
|
||||||
video_enc->pix_fmt = frame_pix_fmt;
|
video_enc->pix_fmt = frame_pix_fmt;
|
||||||
|
|
||||||
if(codec && codec->pix_fmts){
|
if(codec && codec->pix_fmts){
|
||||||
|
Loading…
Reference in New Issue
Block a user