diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-04-02 22:56:39 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-04-09 13:51:58 +0200 |
commit | 5980c924e309ae1dde8bd52d9938f94ff02602eb (patch) | |
tree | c42df889b6dfaa710f5853294c0eeee91c75a6ed /libavcodec | |
parent | be089af38f65dc8b1fe3564f98020fc815577edb (diff) | |
download | ffmpeg-streaming-5980c924e309ae1dde8bd52d9938f94ff02602eb.zip ffmpeg-streaming-5980c924e309ae1dde8bd52d9938f94ff02602eb.tar.gz |
dnxhd: Log the selected profile id
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dnxhddec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/dnxhddec.c b/libavcodec/dnxhddec.c index eb00e86..a6bd0fe 100644 --- a/libavcodec/dnxhddec.c +++ b/libavcodec/dnxhddec.c @@ -80,6 +80,7 @@ static int dnxhd_init_vlc(DNXHDContext *ctx, int cid) return AVERROR(ENOSYS); } ctx->cid_table = &ff_dnxhd_cid_table[index]; + av_log(ctx->avctx, AV_LOG_VERBOSE, "Profile cid %d.\n", cid); ff_free_vlc(&ctx->ac_vlc); ff_free_vlc(&ctx->dc_vlc); |