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
d57d8cbc
Commit
d57d8cbc
authored
Sep 06, 2005
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
a few more raw yuv fourccs
Originally committed as revision 4565 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
5e61b9ec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
raw.c
libavcodec/raw.c
+2
-1
avienc.c
libavformat/avienc.c
+4
-1
No files found.
libavcodec/raw.c
View file @
d57d8cbc
...
@@ -46,7 +46,8 @@ const PixelFormatTag pixelFormatTags[] = {
...
@@ -46,7 +46,8 @@ const PixelFormatTag pixelFormatTags[] = {
{
PIX_FMT_GRAY8
,
MKTAG
(
' '
,
' '
,
'Y'
,
'8'
)
},
{
PIX_FMT_GRAY8
,
MKTAG
(
' '
,
' '
,
'Y'
,
'8'
)
},
{
PIX_FMT_YUV422
,
MKTAG
(
'Y'
,
'4'
,
'2'
,
'2'
)
},
/* Packed formats */
{
PIX_FMT_YUV422
,
MKTAG
(
'Y'
,
'U'
,
'Y'
,
'2'
)
},
/* Packed formats */
{
PIX_FMT_YUV422
,
MKTAG
(
'Y'
,
'4'
,
'2'
,
'2'
)
},
{
PIX_FMT_UYVY422
,
MKTAG
(
'U'
,
'Y'
,
'V'
,
'Y'
)
},
{
PIX_FMT_UYVY422
,
MKTAG
(
'U'
,
'Y'
,
'V'
,
'Y'
)
},
{
PIX_FMT_GRAY8
,
MKTAG
(
'G'
,
'R'
,
'E'
,
'Y'
)
},
{
PIX_FMT_GRAY8
,
MKTAG
(
'G'
,
'R'
,
'E'
,
'Y'
)
},
...
...
libavformat/avienc.c
View file @
d57d8cbc
...
@@ -145,8 +145,11 @@ const CodecTag codec_bmp_tags[] = {
...
@@ -145,8 +145,11 @@ const CodecTag codec_bmp_tags[] = {
{
CODEC_ID_HUFFYUV
,
MKTAG
(
'H'
,
'F'
,
'Y'
,
'U'
)
},
{
CODEC_ID_HUFFYUV
,
MKTAG
(
'H'
,
'F'
,
'Y'
,
'U'
)
},
{
CODEC_ID_FFVHUFF
,
MKTAG
(
'F'
,
'F'
,
'V'
,
'H'
)
},
{
CODEC_ID_FFVHUFF
,
MKTAG
(
'F'
,
'F'
,
'V'
,
'H'
)
},
{
CODEC_ID_CYUV
,
MKTAG
(
'C'
,
'Y'
,
'U'
,
'V'
)
},
{
CODEC_ID_CYUV
,
MKTAG
(
'C'
,
'Y'
,
'U'
,
'V'
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
'Y'
,
'4'
,
'2'
,
'2'
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
'I'
,
'4'
,
'2'
,
'0'
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
'I'
,
'4'
,
'2'
,
'0'
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
'Y'
,
'U'
,
'Y'
,
'2'
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
'Y'
,
'4'
,
'2'
,
'2'
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
'U'
,
'Y'
,
'V'
,
'Y'
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
'I'
,
'Y'
,
'U'
,
'V'
)
},
{
CODEC_ID_INDEO3
,
MKTAG
(
'I'
,
'V'
,
'3'
,
'1'
)
},
{
CODEC_ID_INDEO3
,
MKTAG
(
'I'
,
'V'
,
'3'
,
'1'
)
},
{
CODEC_ID_INDEO3
,
MKTAG
(
'I'
,
'V'
,
'3'
,
'2'
)
},
{
CODEC_ID_INDEO3
,
MKTAG
(
'I'
,
'V'
,
'3'
,
'2'
)
},
{
CODEC_ID_VP3
,
MKTAG
(
'V'
,
'P'
,
'3'
,
'1'
)
},
{
CODEC_ID_VP3
,
MKTAG
(
'V'
,
'P'
,
'3'
,
'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