diff options
author | Clément Bœsch <clement@stupeflix.com> | 2016-06-13 17:41:07 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2016-06-13 22:41:38 +0200 |
commit | 7a2a8b541afa88344a4c9ba6cc62fc63bd4b0658 (patch) | |
tree | 3540806efb35a28b5bb7ab4b8343f6e5a21a57a2 /libavcodec/h264_sei.c | |
parent | 878c3a36451eaf1ae3ec3d8eab0af11dab0a7695 (diff) | |
download | ffmpeg-7a2a8b541afa88344a4c9ba6cc62fc63bd4b0658.tar.gz |
lavc/h264_sei: fix green metadata typo
Diffstat (limited to 'libavcodec/h264_sei.c')
-rw-r--r-- | libavcodec/h264_sei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c index bdc5c9f0f8..3c6d988d7f 100644 --- a/libavcodec/h264_sei.c +++ b/libavcodec/h264_sei.c @@ -381,7 +381,7 @@ static int decode_GreenMetadata(H264Context *h) av_log(h->avctx, AV_LOG_DEBUG, "green_metadata_period_type = %d\n", h->sei_green_metadata.period_type); - if (h->sei_green_metadata.green_metadata_type==2){ + if (h->sei_green_metadata.period_type==2){ h->sei_green_metadata.num_seconds = get_bits(&h->gb, 16); if (h->avctx->debug & FF_DEBUG_GREEN_MD) av_log(h->avctx, AV_LOG_DEBUG, "green_metadata_num_seconds = %d\n", |