|
|
@ -2398,6 +2398,19 @@ static void print_pkt_side_data(WriterContext *w, |
|
|
|
writer_print_section_footer(w); |
|
|
|
writer_print_section_footer(w); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void print_private_data(WriterContext *w, void *priv_data) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
const AVOption *opt = NULL; |
|
|
|
|
|
|
|
while (opt = av_opt_next(priv_data, opt)) { |
|
|
|
|
|
|
|
uint8_t *str; |
|
|
|
|
|
|
|
if (!(opt->flags & AV_OPT_FLAG_EXPORT)) continue; |
|
|
|
|
|
|
|
if (av_opt_get(priv_data, opt->name, 0, &str) >= 0) { |
|
|
|
|
|
|
|
print_str(opt->name, str); |
|
|
|
|
|
|
|
av_free(str); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
static void print_color_range(WriterContext *w, enum AVColorRange color_range) |
|
|
|
static void print_color_range(WriterContext *w, enum AVColorRange color_range) |
|
|
|
{ |
|
|
|
{ |
|
|
|
const char *val = av_color_range_name(color_range); |
|
|
|
const char *val = av_color_range_name(color_range); |
|
|
@ -2448,7 +2461,6 @@ static void print_chroma_location(WriterContext *w, enum AVChromaLocation chroma |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void clear_log(int need_lock) |
|
|
|
static void clear_log(int need_lock) |
|
|
|
{ |
|
|
|
{ |
|
|
|
int i; |
|
|
|
int i; |
|
|
@ -3115,16 +3127,11 @@ static int show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_id |
|
|
|
break; |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (dec_ctx && dec_ctx->codec->priv_class && show_private_data) { |
|
|
|
if (show_private_data) { |
|
|
|
const AVOption *opt = NULL; |
|
|
|
if (dec_ctx && dec_ctx->codec->priv_class) |
|
|
|
while (opt = av_opt_next(dec_ctx->priv_data,opt)) { |
|
|
|
print_private_data(w, dec_ctx->priv_data); |
|
|
|
uint8_t *str; |
|
|
|
if (fmt_ctx->iformat->priv_class) |
|
|
|
if (!(opt->flags & AV_OPT_FLAG_EXPORT)) continue; |
|
|
|
print_private_data(w, fmt_ctx->priv_data); |
|
|
|
if (av_opt_get(dec_ctx->priv_data, opt->name, 0, &str) >= 0) { |
|
|
|
|
|
|
|
print_str(opt->name, str); |
|
|
|
|
|
|
|
av_free(str); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (fmt_ctx->iformat->flags & AVFMT_SHOW_IDS) print_fmt ("id", "0x%x", stream->id); |
|
|
|
if (fmt_ctx->iformat->flags & AVFMT_SHOW_IDS) print_fmt ("id", "0x%x", stream->id); |
|
|
|