mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
Move max reference line idx define to proper place.
This commit is contained in:
parent
cdb64f5e86
commit
c3860f1cbc
|
@ -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.
|
||||||
*
|
*
|
||||||
|
|
|
@ -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];
|
||||||
|
|
Loading…
Reference in a new issue