You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/cfhd: remove some unused or only write items
This commit is contained in:
@@ -95,8 +95,6 @@ static void init_frame_defaults(CFHDContext *s)
|
|||||||
s->channel_num = 0;
|
s->channel_num = 0;
|
||||||
s->lowpass_precision = 16;
|
s->lowpass_precision = 16;
|
||||||
s->quantisation = 1;
|
s->quantisation = 1;
|
||||||
s->wavelet_depth = 3;
|
|
||||||
s->pshift = 1;
|
|
||||||
s->codebook = 0;
|
s->codebook = 0;
|
||||||
s->difference_coding = 0;
|
s->difference_coding = 0;
|
||||||
s->progressive = 0;
|
s->progressive = 0;
|
||||||
|
@@ -96,16 +96,11 @@ typedef struct CFHD_RL_VLC_ELEM {
|
|||||||
#define DWT_LEVELS 3
|
#define DWT_LEVELS 3
|
||||||
|
|
||||||
typedef struct SubBand {
|
typedef struct SubBand {
|
||||||
int level;
|
|
||||||
int orientation;
|
|
||||||
ptrdiff_t stride;
|
ptrdiff_t stride;
|
||||||
int a_width;
|
int a_width;
|
||||||
int width;
|
int width;
|
||||||
int a_height;
|
int a_height;
|
||||||
int height;
|
int height;
|
||||||
int pshift;
|
|
||||||
int quant;
|
|
||||||
uint8_t *ibuf;
|
|
||||||
} SubBand;
|
} SubBand;
|
||||||
|
|
||||||
typedef struct Plane {
|
typedef struct Plane {
|
||||||
@@ -158,8 +153,6 @@ typedef struct CFHDContext {
|
|||||||
int channel_num;
|
int channel_num;
|
||||||
uint8_t lowpass_precision;
|
uint8_t lowpass_precision;
|
||||||
uint16_t quantisation;
|
uint16_t quantisation;
|
||||||
int wavelet_depth;
|
|
||||||
int pshift;
|
|
||||||
|
|
||||||
int codebook;
|
int codebook;
|
||||||
int difference_coding;
|
int difference_coding;
|
||||||
|
Reference in New Issue
Block a user