Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
92b099da
Commit
92b099da
authored
Apr 07, 2014
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swscale: support converting YVYU422 pixel format
parent
8b17243d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
1 deletion
+28
-1
input.c
libswscale/input.c
+15
-0
output.c
libswscale/output.c
+12
-1
utils.c
libswscale/utils.c
+1
-0
No files found.
libswscale/input.c
View file @
92b099da
...
...
@@ -385,6 +385,17 @@ static void yuy2ToUV_c(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1,
assert
(
src1
==
src2
);
}
static
void
yvy2ToUV_c
(
uint8_t
*
dstU
,
uint8_t
*
dstV
,
const
uint8_t
*
src1
,
const
uint8_t
*
src2
,
int
width
,
uint32_t
*
unused
)
{
int
i
;
for
(
i
=
0
;
i
<
width
;
i
++
)
{
dstV
[
i
]
=
src1
[
4
*
i
+
1
];
dstU
[
i
]
=
src1
[
4
*
i
+
3
];
}
assert
(
src1
==
src2
);
}
static
void
bswap16Y_c
(
uint8_t
*
_dst
,
const
uint8_t
*
_src
,
int
width
,
uint32_t
*
unused
)
{
...
...
@@ -677,6 +688,9 @@ av_cold void ff_sws_init_input_funcs(SwsContext *c)
case
AV_PIX_FMT_YUYV422
:
c
->
chrToYV12
=
yuy2ToUV_c
;
break
;
case
AV_PIX_FMT_YVYU422
:
c
->
chrToYV12
=
yvy2ToUV_c
;
break
;
case
AV_PIX_FMT_UYVY422
:
c
->
chrToYV12
=
uyvyToUV_c
;
break
;
...
...
@@ -974,6 +988,7 @@ av_cold void ff_sws_init_input_funcs(SwsContext *c)
break
;
#endif
case
AV_PIX_FMT_YUYV422
:
case
AV_PIX_FMT_YVYU422
:
case
AV_PIX_FMT_Y400A
:
c
->
lumToYV12
=
yuy2ToY_c
;
break
;
...
...
libswscale/output.c
View file @
92b099da
...
...
@@ -450,7 +450,12 @@ YUV2PACKEDWRAPPER(yuv2mono,, black, AV_PIX_FMT_MONOBLACK)
dest[pos + 1] = U; \
dest[pos + 2] = Y2; \
dest[pos + 3] = V; \
} else { \
} else if (target == AV_PIX_FMT_YVYU422) { \
dest[pos + 0] = Y1; \
dest[pos + 1] = V; \
dest[pos + 2] = Y2; \
dest[pos + 3] = U; \
} else {
/* AV_PIX_FMT_UYVY422 */
\
dest[pos + 0] = U; \
dest[pos + 1] = Y1; \
dest[pos + 2] = V; \
...
...
@@ -569,6 +574,7 @@ yuv2422_1_c_template(SwsContext *c, const int16_t *buf0,
#undef output_pixels
YUV2PACKEDWRAPPER
(
yuv2
,
422
,
yuyv422
,
AV_PIX_FMT_YUYV422
)
YUV2PACKEDWRAPPER
(
yuv2
,
422
,
yvyu422
,
AV_PIX_FMT_YVYU422
)
YUV2PACKEDWRAPPER
(
yuv2
,
422
,
uyvy422
,
AV_PIX_FMT_UYVY422
)
#define R_B ((target == AV_PIX_FMT_RGB48LE || target == AV_PIX_FMT_RGB48BE) ? R : B)
...
...
@@ -1576,6 +1582,11 @@ av_cold void ff_sws_init_output_funcs(SwsContext *c,
*
yuv2packed2
=
yuv2yuyv422_2_c
;
*
yuv2packedX
=
yuv2yuyv422_X_c
;
break
;
case
AV_PIX_FMT_YVYU422
:
*
yuv2packed1
=
yuv2yvyu422_1_c
;
*
yuv2packed2
=
yuv2yvyu422_2_c
;
*
yuv2packedX
=
yuv2yvyu422_X_c
;
break
;
case
AV_PIX_FMT_UYVY422
:
*
yuv2packed1
=
yuv2uyvy422_1_c
;
*
yuv2packed2
=
yuv2uyvy422_2_c
;
...
...
libswscale/utils.c
View file @
92b099da
...
...
@@ -92,6 +92,7 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = {
[
AV_PIX_FMT_YUVJ420P
]
=
{
1
,
1
},
[
AV_PIX_FMT_YUVJ422P
]
=
{
1
,
1
},
[
AV_PIX_FMT_YUVJ444P
]
=
{
1
,
1
},
[
AV_PIX_FMT_YVYU422
]
=
{
1
,
1
},
[
AV_PIX_FMT_UYVY422
]
=
{
1
,
1
},
[
AV_PIX_FMT_UYYVYY411
]
=
{
0
,
0
},
[
AV_PIX_FMT_BGR8
]
=
{
1
,
1
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment