@@ -749,9 +749,9 @@ static inline void splat_intraref(const Dav1dContext *const c,
749
749
c -> refmvs_dsp .splat_mv (& t -> rt .r [(t -> by & 31 ) + 5 ], & tmpl , t -> bx , bw4 , bh4 );
750
750
}
751
751
752
- static inline void mc_lowest_px (int * const dst , const int by4 , const int bh4 ,
753
- const int mvy , const int ss_ver ,
754
- const struct ScalableMotionParams * const smp )
752
+ static void mc_lowest_px (int * const dst , const int by4 , const int bh4 ,
753
+ const int mvy , const int ss_ver ,
754
+ const struct ScalableMotionParams * const smp )
755
755
{
756
756
const int v_mul = 4 >> ss_ver ;
757
757
if (!smp -> scale ) {
@@ -766,14 +766,11 @@ static inline void mc_lowest_px(int *const dst, const int by4, const int bh4,
766
766
}
767
767
}
768
768
769
- static inline void affine_lowest_px (Dav1dTaskContext * const t ,
770
- int * const dst , const int is_chroma ,
771
- const uint8_t * const b_dim ,
772
- const Dav1dWarpedMotionParams * const wmp )
769
+ static ALWAYS_INLINE void affine_lowest_px (Dav1dTaskContext * const t , int * const dst ,
770
+ const uint8_t * const b_dim ,
771
+ const Dav1dWarpedMotionParams * const wmp ,
772
+ const int ss_ver , const int ss_hor )
773
773
{
774
- const Dav1dFrameContext * const f = t -> f ;
775
- const int ss_ver = is_chroma && f -> cur .p .layout == DAV1D_PIXEL_LAYOUT_I420 ;
776
- const int ss_hor = is_chroma && f -> cur .p .layout != DAV1D_PIXEL_LAYOUT_I444 ;
777
774
const int h_mul = 4 >> ss_hor , v_mul = 4 >> ss_ver ;
778
775
assert (!((b_dim [0 ] * h_mul ) & 7 ) && !((b_dim [1 ] * v_mul ) & 7 ));
779
776
const int32_t * const mat = wmp -> matrix ;
@@ -792,6 +789,25 @@ static inline void affine_lowest_px(Dav1dTaskContext *const t,
792
789
}
793
790
}
794
791
792
+ static NOINLINE void affine_lowest_px_luma (Dav1dTaskContext * const t , int * const dst ,
793
+ const uint8_t * const b_dim ,
794
+ const Dav1dWarpedMotionParams * const wmp )
795
+ {
796
+ affine_lowest_px (t , dst , b_dim , wmp , 0 , 0 );
797
+ }
798
+
799
+ static NOINLINE void affine_lowest_px_chroma (Dav1dTaskContext * const t , int * const dst ,
800
+ const uint8_t * const b_dim ,
801
+ const Dav1dWarpedMotionParams * const wmp )
802
+ {
803
+ const Dav1dFrameContext * const f = t -> f ;
804
+ assert (f -> cur .p .layout != DAV1D_PIXEL_LAYOUT_I400 );
805
+ if (f -> cur .p .layout == DAV1D_PIXEL_LAYOUT_I444 )
806
+ affine_lowest_px_luma (t , dst , b_dim , wmp );
807
+ else
808
+ affine_lowest_px (t , dst , b_dim , wmp , f -> cur .p .layout & DAV1D_PIXEL_LAYOUT_I420 , 1 );
809
+ }
810
+
795
811
static void obmc_lowest_px (Dav1dTaskContext * const t ,
796
812
int (* const dst )[2 ], const int is_chroma ,
797
813
const uint8_t * const b_dim ,
@@ -2150,9 +2166,9 @@ static int decode_b(Dav1dTaskContext *const t,
2150
2166
((b -> inter_mode == GLOBALMV && f -> gmv_warp_allowed [b -> ref [0 ]]) ||
2151
2167
(b -> motion_mode == MM_WARP && t -> warpmv .type > DAV1D_WM_TYPE_TRANSLATION )))
2152
2168
{
2153
- affine_lowest_px (t , & lowest_px [b -> ref [0 ]][0 ], 0 , b_dim ,
2154
- b -> motion_mode == MM_WARP ? & t -> warpmv :
2155
- & f -> frame_hdr -> gmv [b -> ref [0 ]]);
2169
+ affine_lowest_px_luma (t , & lowest_px [b -> ref [0 ]][0 ], b_dim ,
2170
+ b -> motion_mode == MM_WARP ? & t -> warpmv :
2171
+ & f -> frame_hdr -> gmv [b -> ref [0 ]]);
2156
2172
} else {
2157
2173
mc_lowest_px (& lowest_px [b -> ref [0 ]][0 ], t -> by , bh4 , b -> mv [0 ].y ,
2158
2174
0 , & f -> svc [b -> ref [0 ]][1 ]);
@@ -2203,9 +2219,9 @@ static int decode_b(Dav1dTaskContext *const t,
2203
2219
((b -> inter_mode == GLOBALMV && f -> gmv_warp_allowed [b -> ref [0 ]]) ||
2204
2220
(b -> motion_mode == MM_WARP && t -> warpmv .type > DAV1D_WM_TYPE_TRANSLATION )))
2205
2221
{
2206
- affine_lowest_px (t , & lowest_px [b -> ref [0 ]][1 ], 1 , b_dim ,
2207
- b -> motion_mode == MM_WARP ? & t -> warpmv :
2208
- & f -> frame_hdr -> gmv [b -> ref [0 ]]);
2222
+ affine_lowest_px_chroma (t , & lowest_px [b -> ref [0 ]][1 ], b_dim ,
2223
+ b -> motion_mode == MM_WARP ? & t -> warpmv :
2224
+ & f -> frame_hdr -> gmv [b -> ref [0 ]]);
2209
2225
} else {
2210
2226
mc_lowest_px (& lowest_px [b -> ref [0 ]][1 ],
2211
2227
t -> by & ~ss_ver , bh4 << (bh4 == ss_ver ),
@@ -2220,8 +2236,8 @@ static int decode_b(Dav1dTaskContext *const t,
2220
2236
// y
2221
2237
for (int i = 0 ; i < 2 ; i ++ ) {
2222
2238
if (b -> inter_mode == GLOBALMV_GLOBALMV && f -> gmv_warp_allowed [b -> ref [i ]]) {
2223
- affine_lowest_px (t , & lowest_px [b -> ref [i ]][0 ], 0 , b_dim ,
2224
- & f -> frame_hdr -> gmv [b -> ref [i ]]);
2239
+ affine_lowest_px_luma (t , & lowest_px [b -> ref [i ]][0 ], b_dim ,
2240
+ & f -> frame_hdr -> gmv [b -> ref [i ]]);
2225
2241
} else {
2226
2242
mc_lowest_px (& lowest_px [b -> ref [i ]][0 ], t -> by , bh4 ,
2227
2243
b -> mv [i ].y , 0 , & f -> svc [b -> ref [i ]][1 ]);
@@ -2233,8 +2249,8 @@ static int decode_b(Dav1dTaskContext *const t,
2233
2249
if (b -> inter_mode == GLOBALMV_GLOBALMV &&
2234
2250
imin (cbw4 , cbh4 ) > 1 && f -> gmv_warp_allowed [b -> ref [i ]])
2235
2251
{
2236
- affine_lowest_px (t , & lowest_px [b -> ref [i ]][1 ], 1 , b_dim ,
2237
- & f -> frame_hdr -> gmv [b -> ref [i ]]);
2252
+ affine_lowest_px_chroma (t , & lowest_px [b -> ref [i ]][1 ], b_dim ,
2253
+ & f -> frame_hdr -> gmv [b -> ref [i ]]);
2238
2254
} else {
2239
2255
mc_lowest_px (& lowest_px [b -> ref [i ]][1 ], t -> by , bh4 ,
2240
2256
b -> mv [i ].y , ss_ver , & f -> svc [b -> ref [i ]][1 ]);
0 commit comments