Merge "Restore vp10_default_scan_orders[]" into nextgenv2
This commit is contained in:
Коммит
19a95f0e07
|
@ -3111,6 +3111,13 @@ DECLARE_ALIGNED(16, static const int16_t, vp10_qtr_iscan_32x32[1024]) = {
|
||||||
};
|
};
|
||||||
#endif // CONFIG_EXT_TX
|
#endif // CONFIG_EXT_TX
|
||||||
|
|
||||||
|
const scan_order vp10_default_scan_orders[TX_SIZES] = {
|
||||||
|
{default_scan_4x4, vp10_default_iscan_4x4, default_scan_4x4_neighbors},
|
||||||
|
{default_scan_8x8, vp10_default_iscan_8x8, default_scan_8x8_neighbors},
|
||||||
|
{default_scan_16x16, vp10_default_iscan_16x16, default_scan_16x16_neighbors},
|
||||||
|
{default_scan_32x32, vp10_default_iscan_32x32, default_scan_32x32_neighbors},
|
||||||
|
};
|
||||||
|
|
||||||
#if CONFIG_EXT_TX
|
#if CONFIG_EXT_TX
|
||||||
const scan_order vp10_intra_scan_orders[TX_SIZES][TX_TYPES] = {
|
const scan_order vp10_intra_scan_orders[TX_SIZES][TX_TYPES] = {
|
||||||
{ // TX_4X4
|
{ // TX_4X4
|
||||||
|
|
|
@ -29,6 +29,7 @@ typedef struct {
|
||||||
const int16_t *neighbors;
|
const int16_t *neighbors;
|
||||||
} scan_order;
|
} scan_order;
|
||||||
|
|
||||||
|
extern const scan_order vp10_default_scan_orders[TX_SIZES];
|
||||||
extern const scan_order vp10_intra_scan_orders[TX_SIZES][TX_TYPES];
|
extern const scan_order vp10_intra_scan_orders[TX_SIZES][TX_TYPES];
|
||||||
|
|
||||||
static INLINE int get_coef_context(const int16_t *neighbors,
|
static INLINE int get_coef_context(const int16_t *neighbors,
|
||||||
|
|
Загрузка…
Ссылка в новой задаче