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
017a68e8
Commit
017a68e8
authored
May 21, 2017
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/riff: Support more vlc fourcc's for 12 and 16 bit yuv4xx.
parent
b5228e44
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
raw.c
libavcodec/raw.c
+8
-0
riff.c
libavformat/riff.c
+8
-0
No files found.
libavcodec/raw.c
View file @
017a68e8
...
...
@@ -270,6 +270,14 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = {
{
AV_PIX_FMT_YUV422P10BE
,
MKTAG
(
'I'
,
'2'
,
'A'
,
'B'
)
},
{
AV_PIX_FMT_YUV444P10LE
,
MKTAG
(
'I'
,
'4'
,
'A'
,
'L'
)
},
{
AV_PIX_FMT_YUV444P10BE
,
MKTAG
(
'I'
,
'4'
,
'A'
,
'B'
)
},
{
AV_PIX_FMT_YUV420P12LE
,
MKTAG
(
'I'
,
'0'
,
'C'
,
'L'
)
},
{
AV_PIX_FMT_YUV420P12BE
,
MKTAG
(
'I'
,
'0'
,
'C'
,
'B'
)
},
{
AV_PIX_FMT_YUV422P12LE
,
MKTAG
(
'I'
,
'2'
,
'C'
,
'L'
)
},
{
AV_PIX_FMT_YUV422P12BE
,
MKTAG
(
'I'
,
'2'
,
'C'
,
'B'
)
},
{
AV_PIX_FMT_YUV444P12LE
,
MKTAG
(
'I'
,
'4'
,
'C'
,
'L'
)
},
{
AV_PIX_FMT_YUV444P12BE
,
MKTAG
(
'I'
,
'4'
,
'C'
,
'B'
)
},
{
AV_PIX_FMT_YUV420P16LE
,
MKTAG
(
'I'
,
'0'
,
'F'
,
'L'
)
},
{
AV_PIX_FMT_YUV420P16BE
,
MKTAG
(
'I'
,
'0'
,
'F'
,
'B'
)
},
{
AV_PIX_FMT_YUV444P16LE
,
MKTAG
(
'I'
,
'4'
,
'F'
,
'L'
)
},
{
AV_PIX_FMT_YUV444P16BE
,
MKTAG
(
'I'
,
'4'
,
'F'
,
'B'
)
},
...
...
libavformat/riff.c
View file @
017a68e8
...
...
@@ -284,6 +284,14 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'I'
,
'4'
,
'A'
,
'B'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'I'
,
'4'
,
'F'
,
'L'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'I'
,
'4'
,
'F'
,
'B'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'I'
,
'0'
,
'C'
,
'L'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'I'
,
'0'
,
'C'
,
'B'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'I'
,
'2'
,
'C'
,
'L'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'I'
,
'2'
,
'C'
,
'B'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'I'
,
'4'
,
'C'
,
'L'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'I'
,
'4'
,
'C'
,
'B'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'I'
,
'0'
,
'F'
,
'L'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'I'
,
'0'
,
'F'
,
'B'
)
},
{
AV_CODEC_ID_FRWU
,
MKTAG
(
'F'
,
'R'
,
'W'
,
'U'
)
},
{
AV_CODEC_ID_R10K
,
MKTAG
(
'R'
,
'1'
,
'0'
,
'k'
)
},
{
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