From 5d8e836d0ec3bcaabf5bc2020210a1bc61975922 Mon Sep 17 00:00:00 2001 From: Hendrik Leppkes Date: Tue, 8 Sep 2015 17:10:48 +0200 Subject: Replace all remaining occurances of step/depth_minus1 and offset_plus1 --- ffprobe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ffprobe.c') diff --git a/ffprobe.c b/ffprobe.c index 3e5324e..4328b61 100644 --- a/ffprobe.c +++ b/ffprobe.c @@ -2722,7 +2722,7 @@ static void ffprobe_show_pixel_formats(WriterContext *w) for (i = 0; i < pixdesc->nb_components; i++) { writer_print_section_header(w, SECTION_ID_PIXEL_FORMAT_COMPONENT); print_int("index", i + 1); - print_int("bit_depth", pixdesc->comp[i].depth_minus1 + 1); + print_int("bit_depth", pixdesc->comp[i].depth); writer_print_section_footer(w); } writer_print_section_footer(w); -- cgit v1.1