Move max reference line idx define to proper place.

This commit is contained in:
siivonek 2021-08-16 21:17:09 +02:00
parent cdb64f5e86
commit c3860f1cbc
2 changed files with 5 additions and 4 deletions

View file

@ -212,6 +212,11 @@ typedef int16_t mv_t;
*/ */
#define INTRA_MPM_COUNT 6 #define INTRA_MPM_COUNT 6
/**
* \brief Maximum reference lines for MRL intra
*/
#define MAX_REF_LINE_IDX 3
/** /**
* \brief Number of pixels to delay deblocking. * \brief Number of pixels to delay deblocking.
* *

View file

@ -42,10 +42,6 @@
#include "global.h" // IWYU pragma: keep #include "global.h" // IWYU pragma: keep
#include "kvazaar.h" #include "kvazaar.h"
// Maximum additional reference lines for MRL intra
#define MAX_REF_LINE_IDX 3
typedef struct { typedef struct {
kvz_pixel left[2 * 128 + 3 + 33 * MAX_REF_LINE_IDX]; kvz_pixel left[2 * 128 + 3 + 33 * MAX_REF_LINE_IDX];
kvz_pixel top[2 * 128 + 3 + 33 * MAX_REF_LINE_IDX]; kvz_pixel top[2 * 128 + 3 + 33 * MAX_REF_LINE_IDX];