diff options
author | James Almer <jamrial@gmail.com> | 2017-12-01 01:09:43 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-12-01 01:10:11 -0300 |
commit | 5e9b39b373215104dbcf59e161b3755466f18859 (patch) | |
tree | 3d75ccbe5cff7759f3829e58ed698ffe6a2e7244 /libavcodec/h264dec.c | |
parent | 83ecdc9a920d7f0b69d1a25d63757adb887a1f25 (diff) | |
download | ffmpeg-5e9b39b373215104dbcf59e161b3755466f18859.tar.gz |
avcodec/h264_sei: remove redundant prefix to H264SEIFramePacking fields
Cosmetic change.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/h264dec.c')
-rw-r--r-- | libavcodec/h264dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264dec.c b/libavcodec/h264dec.c index b03024d4a3..1d99ed5f4c 100644 --- a/libavcodec/h264dec.c +++ b/libavcodec/h264dec.c @@ -319,7 +319,7 @@ static int h264_init_context(AVCodecContext *avctx, H264Context *h) h->x264_build = -1; h->frame_recovered = 0; h->poc.prev_frame_num = -1; - h->sei.frame_packing.frame_packing_arrangement_cancel_flag = -1; + h->sei.frame_packing.arrangement_cancel_flag = -1; h->sei.unregistered.x264_build = -1; h->next_outputed_poc = INT_MIN; |