diff options
author | Thierry Foucu <tfoucu@gmail.com> | 2011-07-20 20:33:22 -0700 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-07-21 09:32:53 -0700 |
commit | 364d64275c66ac3b6dff699e80c167b6815e8f57 (patch) | |
tree | 8da1dbdfb4636db3b516f2a795ba96242d5af2a0 | |
parent | 09e8163625ec985fa4388000fe90b9a3550122aa (diff) | |
download | ffmpeg-364d64275c66ac3b6dff699e80c167b6815e8f57.tar.gz |
ffprobe: display bitstream level.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-rw-r--r-- | ffprobe.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -201,6 +201,7 @@ static void show_stream(AVFormatContext *fmt_ctx, int stream_idx) } printf("pix_fmt=%s\n", dec_ctx->pix_fmt != PIX_FMT_NONE ? av_pix_fmt_descriptors[dec_ctx->pix_fmt].name : "unknown"); + printf("level=%d\n", dec_ctx->level); break; case AVMEDIA_TYPE_AUDIO: |