1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-15 13:55:05 +02:00

ffv1: Report additional bitstream information in verbose mode

Useful to inspect samples.
This commit is contained in:
Luca Barbato 2016-06-24 17:38:33 +02:00
parent fe6e5cbea7
commit 3c08b7bc76

View File

@ -537,6 +537,13 @@ static int read_extra_header(FFV1Context *f)
}
}
av_log(f->avctx, AV_LOG_VERBOSE,
"FFV1 version %d.%d colorspace %d - %d bits - %d/%d planes, %s transparent - tile geometry %dx%d - %s\n",
f->version, f->minor_version, f->colorspace, f->avctx->bits_per_raw_sample,
f->plane_count, f->chroma_planes, f->transparency ? "" : "not",
f->num_h_slices, f->num_v_slices,
f->ec ? "per-slice crc" : "no crc");
return 0;
}