mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit '312daa15891dc7abb77a404fe927d5ee35c52a71'
* commit '312daa15891dc7abb77a404fe927d5ee35c52a71': vp9: Use the correct upper bound for seg_id Conflicts: libavcodec/vp9.h libavcodec/vp9block.c Not merged, the value was correct before as far as i can see Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
a82f3de053
|
@ -145,6 +145,7 @@ typedef struct VP9Context {
|
|||
uint8_t yac_qi;
|
||||
int8_t ydc_qdelta, uvdc_qdelta, uvac_qdelta;
|
||||
uint8_t lossless;
|
||||
#define MAX_SEGMENT 8
|
||||
struct {
|
||||
uint8_t enabled;
|
||||
uint8_t temporal;
|
||||
|
@ -160,7 +161,7 @@ typedef struct VP9Context {
|
|||
int8_t lf_val;
|
||||
int16_t qmul[2][2];
|
||||
uint8_t lflvl[4][2];
|
||||
} feat[8];
|
||||
} feat[MAX_SEGMENT];
|
||||
} segmentation;
|
||||
struct {
|
||||
unsigned log2_tile_cols, log2_tile_rows;
|
||||
|
|
Loading…
Reference in New Issue