Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
b6a09ef7
Commit
b6a09ef7
authored
Mar 09, 2014
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rawvideo: Support decoding YVYU422 FourCC
parent
92b099da
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
raw.c
libavcodec/raw.c
+1
-0
riff.c
libavformat/riff.c
+1
-0
No files found.
libavcodec/raw.c
View file @
b6a09ef7
...
@@ -53,6 +53,7 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = {
...
@@ -53,6 +53,7 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = {
{
AV_PIX_FMT_YUYV422
,
MKTAG
(
'V'
,
'4'
,
'2'
,
'2'
)
},
{
AV_PIX_FMT_YUYV422
,
MKTAG
(
'V'
,
'4'
,
'2'
,
'2'
)
},
{
AV_PIX_FMT_YUYV422
,
MKTAG
(
'V'
,
'Y'
,
'U'
,
'Y'
)
},
{
AV_PIX_FMT_YUYV422
,
MKTAG
(
'V'
,
'Y'
,
'U'
,
'Y'
)
},
{
AV_PIX_FMT_YUYV422
,
MKTAG
(
'Y'
,
'U'
,
'N'
,
'V'
)
},
{
AV_PIX_FMT_YUYV422
,
MKTAG
(
'Y'
,
'U'
,
'N'
,
'V'
)
},
{
AV_PIX_FMT_YVYU422
,
MKTAG
(
'Y'
,
'V'
,
'Y'
,
'U'
)
},
/* Philips */
{
AV_PIX_FMT_UYVY422
,
MKTAG
(
'U'
,
'Y'
,
'V'
,
'Y'
)
},
{
AV_PIX_FMT_UYVY422
,
MKTAG
(
'U'
,
'Y'
,
'V'
,
'Y'
)
},
{
AV_PIX_FMT_UYVY422
,
MKTAG
(
'H'
,
'D'
,
'Y'
,
'C'
)
},
{
AV_PIX_FMT_UYVY422
,
MKTAG
(
'H'
,
'D'
,
'Y'
,
'C'
)
},
{
AV_PIX_FMT_UYVY422
,
MKTAG
(
'U'
,
'Y'
,
'N'
,
'V'
)
},
{
AV_PIX_FMT_UYVY422
,
MKTAG
(
'U'
,
'Y'
,
'N'
,
'V'
)
},
...
...
libavformat/riff.c
View file @
b6a09ef7
...
@@ -233,6 +233,7 @@ const AVCodecTag ff_codec_bmp_tags[] = {
...
@@ -233,6 +233,7 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'Y'
,
'U'
,
'V'
,
'9'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'Y'
,
'U'
,
'V'
,
'9'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'Y'
,
'V'
,
'U'
,
'9'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'Y'
,
'V'
,
'U'
,
'9'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'a'
,
'u'
,
'v'
,
'2'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'a'
,
'u'
,
'v'
,
'2'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'Y'
,
'V'
,
'Y'
,
'U'
)
},
{
AV_CODEC_ID_FRWU
,
MKTAG
(
'F'
,
'R'
,
'W'
,
'U'
)
},
{
AV_CODEC_ID_FRWU
,
MKTAG
(
'F'
,
'R'
,
'W'
,
'U'
)
},
{
AV_CODEC_ID_R10K
,
MKTAG
(
'R'
,
'1'
,
'0'
,
'k'
)
},
{
AV_CODEC_ID_R10K
,
MKTAG
(
'R'
,
'1'
,
'0'
,
'k'
)
},
{
AV_CODEC_ID_R210
,
MKTAG
(
'r'
,
'2'
,
'1'
,
'0'
)
},
{
AV_CODEC_ID_R210
,
MKTAG
(
'r'
,
'2'
,
'1'
,
'0'
)
},
...
...
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