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
63455b8c
Commit
63455b8c
authored
Jun 06, 2010
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bgr/rgb444 for nut
Originally committed as revision 23504 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
de51f22d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
raw.c
libavcodec/raw.c
+4
-0
nut.c
libavformat/nut.c
+4
-0
No files found.
libavcodec/raw.c
View file @
63455b8c
...
...
@@ -75,6 +75,10 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = {
{
PIX_FMT_BGR555BE
,
MKTAG
(
15
,
'R'
,
'G'
,
'B'
)
},
{
PIX_FMT_RGB565BE
,
MKTAG
(
16
,
'B'
,
'G'
,
'R'
)
},
{
PIX_FMT_BGR565BE
,
MKTAG
(
16
,
'R'
,
'G'
,
'B'
)
},
{
PIX_FMT_RGB444LE
,
MKTAG
(
'R'
,
'G'
,
'B'
,
12
)
},
{
PIX_FMT_BGR444LE
,
MKTAG
(
'B'
,
'G'
,
'R'
,
12
)
},
{
PIX_FMT_RGB444BE
,
MKTAG
(
12
,
'B'
,
'G'
,
'R'
)
},
{
PIX_FMT_BGR444BE
,
MKTAG
(
12
,
'R'
,
'G'
,
'B'
)
},
{
PIX_FMT_RGBA
,
MKTAG
(
'R'
,
'G'
,
'B'
,
'A'
)
},
{
PIX_FMT_BGRA
,
MKTAG
(
'B'
,
'G'
,
'R'
,
'A'
)
},
{
PIX_FMT_ABGR
,
MKTAG
(
'A'
,
'B'
,
'G'
,
'R'
)
},
...
...
libavformat/nut.c
View file @
63455b8c
...
...
@@ -40,6 +40,10 @@ const AVCodecTag ff_nut_video_tags[] = {
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
15
,
'R'
,
'G'
,
'B'
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
16
,
'B'
,
'G'
,
'R'
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
16
,
'R'
,
'G'
,
'B'
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
'R'
,
'G'
,
'B'
,
12
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
'B'
,
'G'
,
'R'
,
12
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
12
,
'B'
,
'G'
,
'R'
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
12
,
'R'
,
'G'
,
'B'
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
'R'
,
'G'
,
'B'
,
'A'
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
'B'
,
'G'
,
'R'
,
'A'
)
},
{
CODEC_ID_RAWVIDEO
,
MKTAG
(
'A'
,
'B'
,
'G'
,
'R'
)
},
...
...
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