mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ffprobe: display the codec profile in show_stream()
Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
This commit is contained in:
parent
36f714f825
commit
f7d5272456
@ -83,6 +83,7 @@
|
|||||||
<xsd:attribute name="index" type="xsd:int" use="required"/>
|
<xsd:attribute name="index" type="xsd:int" use="required"/>
|
||||||
<xsd:attribute name="codec_name" type="xsd:string" />
|
<xsd:attribute name="codec_name" type="xsd:string" />
|
||||||
<xsd:attribute name="codec_long_name" type="xsd:string" />
|
<xsd:attribute name="codec_long_name" type="xsd:string" />
|
||||||
|
<xsd:attribute name="profile" type="xsd:string" />
|
||||||
<xsd:attribute name="codec_type" type="xsd:string" />
|
<xsd:attribute name="codec_type" type="xsd:string" />
|
||||||
<xsd:attribute name="codec_time_base" type="xsd:string" use="required"/>
|
<xsd:attribute name="codec_time_base" type="xsd:string" use="required"/>
|
||||||
<xsd:attribute name="codec_tag" type="xsd:string" use="required"/>
|
<xsd:attribute name="codec_tag" type="xsd:string" use="required"/>
|
||||||
|
@ -1364,6 +1364,7 @@ static void show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_i
|
|||||||
print_int("index", stream->index);
|
print_int("index", stream->index);
|
||||||
|
|
||||||
if ((dec_ctx = stream->codec)) {
|
if ((dec_ctx = stream->codec)) {
|
||||||
|
const char *profile = NULL;
|
||||||
if ((dec = dec_ctx->codec)) {
|
if ((dec = dec_ctx->codec)) {
|
||||||
print_str("codec_name", dec->name);
|
print_str("codec_name", dec->name);
|
||||||
print_str("codec_long_name", dec->long_name);
|
print_str("codec_long_name", dec->long_name);
|
||||||
@ -1372,6 +1373,11 @@ static void show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_i
|
|||||||
print_str_opt("codec_long_name", "unknown");
|
print_str_opt("codec_long_name", "unknown");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (dec && (profile = av_get_profile_name(dec, dec_ctx->profile)))
|
||||||
|
print_str("profile", profile);
|
||||||
|
else
|
||||||
|
print_str_opt("profile", "unknown");
|
||||||
|
|
||||||
s = av_get_media_type_string(dec_ctx->codec_type);
|
s = av_get_media_type_string(dec_ctx->codec_type);
|
||||||
if (s) print_str ("codec_type", s);
|
if (s) print_str ("codec_type", s);
|
||||||
else print_str_opt("codec_type", "unknown");
|
else print_str_opt("codec_type", "unknown");
|
||||||
|
Loading…
Reference in New Issue
Block a user