diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-11-02 11:59:02 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-02 15:32:15 +0100 |
commit | 2c4f5736962a7ae6a484017eddc07452cc4c39c0 (patch) | |
tree | 07d755336c46e5a51135ba8e061490dffec53df9 /libavcodec/hevc_sei.c | |
parent | e877455ff98a655fb95aff7574b6d269bd712110 (diff) | |
download | ffmpeg-2c4f5736962a7ae6a484017eddc07452cc4c39c0.tar.gz |
libavcodec/hevc: random cosmetics to reduce diff to 064698d381e1e7790f21b0199a8930ea04e2e942
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc_sei.c')
-rw-r--r-- | libavcodec/hevc_sei.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libavcodec/hevc_sei.c b/libavcodec/hevc_sei.c index d6e4adbb71..5b43474885 100644 --- a/libavcodec/hevc_sei.c +++ b/libavcodec/hevc_sei.c @@ -57,11 +57,10 @@ static void decode_nal_sei_frame_packing_arrangement(HEVCContext *s) get_ue_golomb(gb); // frame_packing_arrangement_id cancel = get_bits1(gb); // frame_packing_cancel_flag - if (cancel == 0 ) - { - type = get_bits(gb, 7); // frame_packing_arrangement_type - quincunx = get_bits1(gb); // quincunx_sampling_flag - skip_bits(gb, 6); // content_interpretation_type + if (cancel == 0 ){ + type = get_bits(gb, 7); // frame_packing_arrangement_type + quincunx = get_bits1(gb); // quincunx_sampling_flag + skip_bits(gb, 6); // content_interpretation_type // the following skips spatial_flipping_flag frame0_flipped_flag // field_views_flag current_frame_is_frame0_flag |