1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

avcodec/cfhd: read prescale table tag

Currently unused. Remove prescale shift tag as it
is not part of this codec.
This commit is contained in:
Paul B Mahol 2020-08-09 13:02:46 +02:00
parent 3ff7171a85
commit fc3546bece
2 changed files with 5 additions and 7 deletions

View File

@ -517,11 +517,10 @@ static int cfhd_decode(AVCodecContext *avctx, void *data, int *got_frame,
else if (tag == Quantization) {
s->quantisation = data;
av_log(avctx, AV_LOG_DEBUG, "Quantisation: %"PRIu16"\n", data);
} else if (tag == PrescaleShift) {
s->prescale_shift[0] = (data >> 0) & 0x7;
s->prescale_shift[1] = (data >> 3) & 0x7;
s->prescale_shift[2] = (data >> 6) & 0x7;
av_log(avctx, AV_LOG_DEBUG, "Prescale shift (VC-5): %x\n", data);
} else if (tag == PrescaleTable) {
for (i = 0; i < 8; i++)
s->prescale_table[i] = (data >> (14 - i * 2)) & 0x3;
av_log(avctx, AV_LOG_DEBUG, "Prescale table: %x\n", data);
} else if (tag == BandEncoding) {
if (!data || data > 5) {
av_log(avctx, AV_LOG_ERROR, "Invalid band encoding\n");

View File

@ -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;