mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
cosmetics: moved to a separate function the code to print the characteristics of an AVStream
Originally committed as revision 10818 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
40eaf7806d
commit
fad0e03043
@ -2484,6 +2484,31 @@ fail:
|
||||
}
|
||||
|
||||
/* "user interface" functions */
|
||||
static void dump_stream_format(AVFormatContext *ic, int i, int index, char *buf, int is_output)
|
||||
{
|
||||
int flags = (is_output ? ic->oformat->flags : ic->iformat->flags);
|
||||
AVStream *st = ic->streams[i];
|
||||
int g = ff_gcd(st->time_base.num, st->time_base.den);
|
||||
avcodec_string(buf, sizeof(buf), st->codec, is_output);
|
||||
av_log(NULL, AV_LOG_INFO, " Stream #%d.%d", index, i);
|
||||
/* the pid is an important information, so we display it */
|
||||
/* XXX: add a generic system */
|
||||
if (flags & AVFMT_SHOW_IDS)
|
||||
av_log(NULL, AV_LOG_INFO, "[0x%x]", st->id);
|
||||
if (strlen(st->language) > 0)
|
||||
av_log(NULL, AV_LOG_INFO, "(%s)", st->language);
|
||||
av_log(NULL, AV_LOG_DEBUG, ", %d/%d", st->time_base.num/g, st->time_base.den/g);
|
||||
av_log(NULL, AV_LOG_INFO, ": %s", buf);
|
||||
if(st->codec->codec_type == CODEC_TYPE_VIDEO){
|
||||
if(st->r_frame_rate.den && st->r_frame_rate.num)
|
||||
av_log(NULL, AV_LOG_INFO, ", %5.2f fps(r)", av_q2d(st->r_frame_rate));
|
||||
/* else if(st->time_base.den && st->time_base.num)
|
||||
av_log(NULL, AV_LOG_INFO, ", %5.2f fps(m)", 1/av_q2d(st->time_base));*/
|
||||
else
|
||||
av_log(NULL, AV_LOG_INFO, ", %5.2f fps(c)", 1/av_q2d(st->codec->time_base));
|
||||
}
|
||||
av_log(NULL, AV_LOG_INFO, "\n");
|
||||
}
|
||||
|
||||
void dump_format(AVFormatContext *ic,
|
||||
int index,
|
||||
@ -2529,35 +2554,8 @@ void dump_format(AVFormatContext *ic,
|
||||
}
|
||||
av_log(NULL, AV_LOG_INFO, "\n");
|
||||
}
|
||||
for(i=0;i<ic->nb_streams;i++) {
|
||||
AVStream *st = ic->streams[i];
|
||||
int g= ff_gcd(st->time_base.num, st->time_base.den);
|
||||
avcodec_string(buf, sizeof(buf), st->codec, is_output);
|
||||
av_log(NULL, AV_LOG_INFO, " Stream #%d.%d", index, i);
|
||||
/* the pid is an important information, so we display it */
|
||||
/* XXX: add a generic system */
|
||||
if (is_output)
|
||||
flags = ic->oformat->flags;
|
||||
else
|
||||
flags = ic->iformat->flags;
|
||||
if (flags & AVFMT_SHOW_IDS) {
|
||||
av_log(NULL, AV_LOG_INFO, "[0x%x]", st->id);
|
||||
}
|
||||
if (strlen(st->language) > 0) {
|
||||
av_log(NULL, AV_LOG_INFO, "(%s)", st->language);
|
||||
}
|
||||
av_log(NULL, AV_LOG_DEBUG, ", %d/%d", st->time_base.num/g, st->time_base.den/g);
|
||||
av_log(NULL, AV_LOG_INFO, ": %s", buf);
|
||||
if(st->codec->codec_type == CODEC_TYPE_VIDEO){
|
||||
if(st->r_frame_rate.den && st->r_frame_rate.num)
|
||||
av_log(NULL, AV_LOG_INFO, ", %5.2f fps(r)", av_q2d(st->r_frame_rate));
|
||||
/* else if(st->time_base.den && st->time_base.num)
|
||||
av_log(NULL, AV_LOG_INFO, ", %5.2f fps(m)", 1/av_q2d(st->time_base));*/
|
||||
else
|
||||
av_log(NULL, AV_LOG_INFO, ", %5.2f fps(c)", 1/av_q2d(st->codec->time_base));
|
||||
}
|
||||
av_log(NULL, AV_LOG_INFO, "\n");
|
||||
}
|
||||
for(i=0;i<ic->nb_streams;i++)
|
||||
dump_stream_format(ic, i, index, buf, is_output);
|
||||
}
|
||||
|
||||
int parse_image_size(int *width_ptr, int *height_ptr, const char *str)
|
||||
|
Loading…
Reference in New Issue
Block a user