Commit a82f3de0 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '312daa15'

* commit '312daa15':
  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: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents ac967ad8 312daa15
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment