diff options
author | Paul B Mahol <onemda@gmail.com> | 2020-08-09 13:02:46 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2020-08-09 18:47:29 +0200 |
commit | fc3546becec8da6c62d12f2e2174d84355731820 (patch) | |
tree | 831c74d8607dcb6f41affb230a5123d52846672a /libavcodec/cfhd.h | |
parent | 3ff7171a8524cf1e49bbfc6528c02a205b0f4fac (diff) | |
download | ffmpeg-fc3546becec8da6c62d12f2e2174d84355731820.tar.gz |
avcodec/cfhd: read prescale table tag
Currently unused. Remove prescale shift tag as it
is not part of this codec.
Diffstat (limited to 'libavcodec/cfhd.h')
-rw-r--r-- | libavcodec/cfhd.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/cfhd.h b/libavcodec/cfhd.h index 09c570c06b..fa4a2d28f5 100644 --- a/libavcodec/cfhd.h +++ b/libavcodec/cfhd.h @@ -83,7 +83,6 @@ enum CFHDParam { EncodedFormat = 84, ChannelWidth = 104, ChannelHeight = 105, - PrescaleShift = 109, }; #define VLC_BITS 9 @@ -171,7 +170,7 @@ typedef struct CFHDContext { int level; int subband_num_actual; - uint8_t prescale_shift[3]; + uint8_t prescale_table[8]; Plane plane[4]; Peak peak; } CFHDContext; |