@@ -750,83 +750,3 @@ void vp9_highbd_resize_plane(const uint8_t *const input, int height, int width,
750
750
free (arrbuf2 );
751
751
}
752
752
#endif // CONFIG_VP9_HIGHBITDEPTH
753
-
754
- void vp9_resize_frame420 (const uint8_t * const y , int y_stride ,
755
- const uint8_t * const u , const uint8_t * const v ,
756
- int uv_stride , int height , int width , uint8_t * oy ,
757
- int oy_stride , uint8_t * ou , uint8_t * ov ,
758
- int ouv_stride , int oheight , int owidth ) {
759
- vp9_resize_plane (y , height , width , y_stride , oy , oheight , owidth , oy_stride );
760
- vp9_resize_plane (u , height / 2 , width / 2 , uv_stride , ou , oheight / 2 ,
761
- owidth / 2 , ouv_stride );
762
- vp9_resize_plane (v , height / 2 , width / 2 , uv_stride , ov , oheight / 2 ,
763
- owidth / 2 , ouv_stride );
764
- }
765
-
766
- void vp9_resize_frame422 (const uint8_t * const y , int y_stride ,
767
- const uint8_t * const u , const uint8_t * const v ,
768
- int uv_stride , int height , int width , uint8_t * oy ,
769
- int oy_stride , uint8_t * ou , uint8_t * ov ,
770
- int ouv_stride , int oheight , int owidth ) {
771
- vp9_resize_plane (y , height , width , y_stride , oy , oheight , owidth , oy_stride );
772
- vp9_resize_plane (u , height , width / 2 , uv_stride , ou , oheight , owidth / 2 ,
773
- ouv_stride );
774
- vp9_resize_plane (v , height , width / 2 , uv_stride , ov , oheight , owidth / 2 ,
775
- ouv_stride );
776
- }
777
-
778
- void vp9_resize_frame444 (const uint8_t * const y , int y_stride ,
779
- const uint8_t * const u , const uint8_t * const v ,
780
- int uv_stride , int height , int width , uint8_t * oy ,
781
- int oy_stride , uint8_t * ou , uint8_t * ov ,
782
- int ouv_stride , int oheight , int owidth ) {
783
- vp9_resize_plane (y , height , width , y_stride , oy , oheight , owidth , oy_stride );
784
- vp9_resize_plane (u , height , width , uv_stride , ou , oheight , owidth ,
785
- ouv_stride );
786
- vp9_resize_plane (v , height , width , uv_stride , ov , oheight , owidth ,
787
- ouv_stride );
788
- }
789
-
790
- #if CONFIG_VP9_HIGHBITDEPTH
791
- void vp9_highbd_resize_frame420 (const uint8_t * const y , int y_stride ,
792
- const uint8_t * const u , const uint8_t * const v ,
793
- int uv_stride , int height , int width ,
794
- uint8_t * oy , int oy_stride , uint8_t * ou ,
795
- uint8_t * ov , int ouv_stride , int oheight ,
796
- int owidth , int bd ) {
797
- vp9_highbd_resize_plane (y , height , width , y_stride , oy , oheight , owidth ,
798
- oy_stride , bd );
799
- vp9_highbd_resize_plane (u , height / 2 , width / 2 , uv_stride , ou , oheight / 2 ,
800
- owidth / 2 , ouv_stride , bd );
801
- vp9_highbd_resize_plane (v , height / 2 , width / 2 , uv_stride , ov , oheight / 2 ,
802
- owidth / 2 , ouv_stride , bd );
803
- }
804
-
805
- void vp9_highbd_resize_frame422 (const uint8_t * const y , int y_stride ,
806
- const uint8_t * const u , const uint8_t * const v ,
807
- int uv_stride , int height , int width ,
808
- uint8_t * oy , int oy_stride , uint8_t * ou ,
809
- uint8_t * ov , int ouv_stride , int oheight ,
810
- int owidth , int bd ) {
811
- vp9_highbd_resize_plane (y , height , width , y_stride , oy , oheight , owidth ,
812
- oy_stride , bd );
813
- vp9_highbd_resize_plane (u , height , width / 2 , uv_stride , ou , oheight ,
814
- owidth / 2 , ouv_stride , bd );
815
- vp9_highbd_resize_plane (v , height , width / 2 , uv_stride , ov , oheight ,
816
- owidth / 2 , ouv_stride , bd );
817
- }
818
-
819
- void vp9_highbd_resize_frame444 (const uint8_t * const y , int y_stride ,
820
- const uint8_t * const u , const uint8_t * const v ,
821
- int uv_stride , int height , int width ,
822
- uint8_t * oy , int oy_stride , uint8_t * ou ,
823
- uint8_t * ov , int ouv_stride , int oheight ,
824
- int owidth , int bd ) {
825
- vp9_highbd_resize_plane (y , height , width , y_stride , oy , oheight , owidth ,
826
- oy_stride , bd );
827
- vp9_highbd_resize_plane (u , height , width , uv_stride , ou , oheight , owidth ,
828
- ouv_stride , bd );
829
- vp9_highbd_resize_plane (v , height , width , uv_stride , ov , oheight , owidth ,
830
- ouv_stride , bd );
831
- }
832
- #endif // CONFIG_VP9_HIGHBITDEPTH
0 commit comments