1 @*****************************************************************************
2 @ yuyv_i422.S : ARM NEONv1 packed to planar YUV422 conversion
3 @*****************************************************************************
4 @ Copyright (C) 2011 RĂ©mi Denis-Courmont
6 @ This program is free software; you can redistribute it and/or modify
7 @ it under the terms of the GNU Lesser General Public License as published by
8 @ the Free Software Foundation; either version 2.1 of the License, or
9 @ (at your option) any later version.
11 @ This program is distributed in the hope that it will be useful,
12 @ but WITHOUT ANY WARRANTY; without even the implied warranty of
13 @ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 @ GNU Lesser General Public License for more details.
16 @ You should have received a copy of the GNU Lesser General Public License
17 @ along with this program; if not, write to the Free Software Foundation,
18 @ Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 @****************************************************************************/
36 .global yuyv_i422_neon
37 .type yuyv_i422_neon, %function
40 ldmia r0, {Y, U, V, YPAD}
44 sub IPAD, IPAD, WIDTH, lsl #1
50 subs COUNT, COUNT, #16
51 vld1.u8 {q0-q1}, [I,:128]!
53 @ TODO: unroll (1 cycle stall)
55 vst1.u8 {q0}, [Y,:128]!
56 vst1.u8 {d2}, [U,:64]!
57 vst1.u8 {d3}, [V,:64]!
63 add U, U, YPAD, lsr #1
64 add V, V, YPAD, lsr #1
67 .global uyvy_i422_neon
68 .type uyvy_i422_neon, %function
71 ldmia r0, {Y, U, V, YPAD}
75 sub IPAD, IPAD, WIDTH, lsl #1
81 subs COUNT, COUNT, #16
82 vld1.u8 {q0-q1}, [I,:128]!
85 vst1.u8 {q1}, [Y,:128]!
86 vst1.u8 {d0}, [U,:64]!
87 vst1.u8 {d1}, [V,:64]!
93 add U, U, YPAD, lsr #1
94 add V, V, YPAD, lsr #1