mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avfilter/vf_showinfo: also print chroma loc
Curiously absent.
This commit is contained in:
parent
4e6cf5e52b
commit
90d327d607
@ -715,11 +715,11 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
|
||||
av_log(ctx, AV_LOG_INFO,
|
||||
"n:%4"PRId64" pts:%7s pts_time:%-7s duration:%7"PRId64
|
||||
" duration_time:%-7s "
|
||||
"fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c ",
|
||||
"fmt:%s cl:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c ",
|
||||
inlink->frame_count_out,
|
||||
av_ts2str(frame->pts), av_ts2timestr(frame->pts, &inlink->time_base),
|
||||
frame->duration, av_ts2timestr(frame->duration, &inlink->time_base),
|
||||
desc->name,
|
||||
desc->name, av_chroma_location_name(frame->chroma_location),
|
||||
frame->sample_aspect_ratio.num, frame->sample_aspect_ratio.den,
|
||||
frame->width, frame->height,
|
||||
!(frame->flags & AV_FRAME_FLAG_INTERLACED) ? 'P' : /* Progressive */
|
||||
|
Loading…
Reference in New Issue
Block a user