1 @*****************************************************************************
2 @ i422_yuyv.S : ARM NEONv1 I422 to YUYV chroma 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 @****************************************************************************/
24 #if HAVE_AS_FPU_DIRECTIVE
40 function i422_yuyv_neon
42 ldmia r1, {Y, U, V, YPAD}
45 sub OPAD, OPAD, WIDTH, lsl #1
53 vld1.u8 {d2}, [U,:64]!
55 vld1.u8 {d3}, [V,:64]!
58 subs COUNT, COUNT, #16
59 vld1.u8 {q0}, [Y,:128]!
61 @ TODO: unroll (1 cycle stall)
62 vst1.u8 {q0-q1}, [O,:128]!
66 add U, U, YPAD, lsr #1
67 add V, V, YPAD, lsr #1
72 function i422_uyvy_neon
74 ldmia r1, {Y, U, V, YPAD}
77 sub OPAD, OPAD, WIDTH, lsl #1
85 vld1.u8 {d0}, [U,:64]!
87 vld1.u8 {d1}, [V,:64]!
90 subs COUNT, COUNT, #16
91 vld1.u8 {q1}, [Y,:128]!
93 vst1.u8 {q0-q1}, [O,:128]!
97 add U, U, YPAD, lsr #1
98 add V, V, YPAD, lsr #1