diff options
Diffstat (limited to 'third_party/aom/av1/encoder/mbgraph.h')
-rw-r--r-- | third_party/aom/av1/encoder/mbgraph.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/third_party/aom/av1/encoder/mbgraph.h b/third_party/aom/av1/encoder/mbgraph.h index 758e2ad152..3e0a4fa9b8 100644 --- a/third_party/aom/av1/encoder/mbgraph.h +++ b/third_party/aom/av1/encoder/mbgraph.h @@ -23,10 +23,12 @@ typedef struct { int_mv mv; PREDICTION_MODE mode; } m; - } ref[TOTAL_REFS_PER_FRAME]; + } ref[REF_FRAMES]; } MBGRAPH_MB_STATS; -typedef struct { MBGRAPH_MB_STATS *mb_stats; } MBGRAPH_FRAME_STATS; +typedef struct { + MBGRAPH_MB_STATS *mb_stats; +} MBGRAPH_FRAME_STATS; struct AV1_COMP; |