mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02: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 buf1[32];
|
||||||
char channels_str[100];
|
char channels_str[100];
|
||||||
int bitrate;
|
int bitrate;
|
||||||
|
AVRational display_aspect_ratio;
|
||||||
|
|
||||||
if (encode)
|
if (encode)
|
||||||
p = avcodec_find_encoder(enc->codec_id);
|
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),
|
snprintf(buf + strlen(buf), buf_size - strlen(buf),
|
||||||
", %dx%d",
|
", %dx%d",
|
||||||
enc->width, enc->height);
|
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){
|
if(av_log_level >= AV_LOG_DEBUG){
|
||||||
int g= ff_gcd(enc->time_base.num, enc->time_base.den);
|
int g= ff_gcd(enc->time_base.num, enc->time_base.den);
|
||||||
snprintf(buf + strlen(buf), buf_size - strlen(buf),
|
snprintf(buf + strlen(buf), buf_size - strlen(buf),
|
||||||
|
Loading…
Reference in New Issue
Block a user