mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 14:01:27 +00:00
Print pixel and display aspect ratios
Originally committed as revision 10778 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
3c11a27b44
commit
59771f7191
@ -1075,6 +1075,7 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
|
||||
char buf1[32];
|
||||
char channels_str[100];
|
||||
int bitrate;
|
||||
AVRational display_aspect_ratio;
|
||||
|
||||
if (encode)
|
||||
p = avcodec_find_encoder(enc->codec_id);
|
||||
@ -1125,6 +1126,14 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
|
||||
snprintf(buf + strlen(buf), buf_size - strlen(buf),
|
||||
", %dx%d",
|
||||
enc->width, enc->height);
|
||||
av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
|
||||
enc->width*enc->sample_aspect_ratio.num,
|
||||
enc->height*enc->sample_aspect_ratio.den,
|
||||
1024*1024);
|
||||
snprintf(buf + strlen(buf), buf_size - strlen(buf),
|
||||
" [PAR %d:%d DAR %d:%d]",
|
||||
enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
|
||||
display_aspect_ratio.num, display_aspect_ratio.den);
|
||||
if(av_log_level >= AV_LOG_DEBUG){
|
||||
int g= ff_gcd(enc->time_base.num, enc->time_base.den);
|
||||
snprintf(buf + strlen(buf), buf_size - strlen(buf),
|
||||
|
Loading…
Reference in New Issue
Block a user