]> git.sesse.net Git - ffmpeg/blobdiff - ffprobe.c
avformat/aiffdec: Stop header parsing once a non header packet is reached
[ffmpeg] / ffprobe.c
index 1227f59c0bfff39635b32ff66339bd9b6a7188f2..9ee2850785f03879f3249316a97a0ac9a0a8869a 100644 (file)
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -2094,6 +2094,8 @@ static int show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_id
         case AVMEDIA_TYPE_VIDEO:
             print_int("width",        dec_ctx->width);
             print_int("height",       dec_ctx->height);
+            print_int("coded_width",  dec_ctx->coded_width);
+            print_int("coded_height", dec_ctx->coded_height);
             print_int("has_b_frames", dec_ctx->has_b_frames);
             sar = av_guess_sample_aspect_ratio(fmt_ctx, stream, NULL);
             if (sar.den) {