diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-11-02 11:59:02 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-02 17:28:44 +0100 |
commit | 35594c48caf00ef96c45b50be4767f3e7f08a77f (patch) | |
tree | 0aa444b2506a14878bb932b63e15507534881afd /libavcodec/hevc.c | |
parent | 2c4f5736962a7ae6a484017eddc07452cc4c39c0 (diff) | |
download | ffmpeg-35594c48caf00ef96c45b50be4767f3e7f08a77f.tar.gz |
libavcodec/hevc: random cosmetics to reduce diff to 064698d381e1e7790f21b0199a8930ea04e2e942
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc.c')
-rw-r--r-- | libavcodec/hevc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c index 0176afbd8a..ffade94695 100644 --- a/libavcodec/hevc.c +++ b/libavcodec/hevc.c @@ -2424,8 +2424,8 @@ static int decode_nal_units(HEVCContext *s, const uint8_t *buf, int length) goto fail; hls_nal_unit(s); - if (s->nal_unit_type == NAL_EOS_NUT || - s->nal_unit_type == NAL_EOB_NUT) + if (s->nal_unit_type == NAL_EOB_NUT || + s->nal_unit_type == NAL_EOS_NUT) s->eos = 1; buf += consumed; |