Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
0f371e3e
Commit
0f371e3e
authored
21 years ago
by
Mike Melanson
Browse files
Options
Downloads
Patches
Plain Diff
final word on RGBA byte order
Originally committed as revision 2268 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
e7015b41
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavcodec/avcodec.h
+14
-2
14 additions, 2 deletions
libavcodec/avcodec.h
libavcodec/xan.c
+1
-11
1 addition, 11 deletions
libavcodec/xan.c
with
15 additions
and
13 deletions
libavcodec/avcodec.h
+
14
−
2
View file @
0f371e3e
...
...
@@ -115,7 +115,19 @@ enum CodecType {
};
/**
* Pixel format.
* Pixel format. Notes:
*
* PIX_FMT_RGBA32 is handled in an endian-specific manner. A RGBA
* color is put together as:
* (A << 24) | (R << 16) | (G << 8) | B
* This is stored as BGRA on little endian CPU architectures and ARGB on
* big endian CPUs.
*
* When the pixel format is palettized RGB (PIX_FMT_PAL8), the palettized
* image data is stored in AVFrame.data[0]. The palette is transported in
* AVFrame.data[1] and, is 1024 bytes long (256 4-byte entries) and is
* formatted the same as in PIX_FMT_RGBA32 described above (i.e., it is
* also endian-specific).
*/
enum
PixelFormat
{
PIX_FMT_YUV420P
,
///< Planar YUV 4:2:0 (1 Cr & Cb sample per 2x2 Y samples)
...
...
@@ -124,7 +136,7 @@ enum PixelFormat {
PIX_FMT_BGR24
,
///< Packed pixel, 3 bytes per pixel, BGRBGR...
PIX_FMT_YUV422P
,
///< Planar YUV 4:2:2 (1 Cr & Cb sample per 2x1 Y samples)
PIX_FMT_YUV444P
,
///< Planar YUV 4:4:4 (1 Cr & Cb sample per 1x1 Y samples)
PIX_FMT_RGBA32
,
///< Packed pixel, 4 bytes per pixel, BGRABGRA...
PIX_FMT_RGBA32
,
///< Packed pixel, 4 bytes per pixel, BGRABGRA...
, stored in cpu endianness
PIX_FMT_YUV410P
,
///< Planar YUV 4:1:0 (1 Cr & Cb sample per 4x4 Y samples)
PIX_FMT_YUV411P
,
///< Planar YUV 4:1:1 (1 Cr & Cb sample per 4x1 Y samples)
PIX_FMT_RGB565
,
///< always stored in cpu endianness
...
...
This diff is collapsed.
Click to expand it.
libavcodec/xan.c
+
1
−
11
View file @
0f371e3e
...
...
@@ -265,17 +265,6 @@ static void inline xan_wc3_build_palette(XanContext *s,
switch
(
s
->
avctx
->
pix_fmt
)
{
case
PIX_FMT_PAL8
:
for
(
i
=
0
;
i
<
PALETTE_COUNT
;
i
++
)
{
r
=
*
palette_data
++
;
g
=
*
palette_data
++
;
b
=
*
palette_data
++
;
s
->
palette
[
i
*
4
+
0
]
=
b
;
s
->
palette
[
i
*
4
+
1
]
=
g
;
s
->
palette
[
i
*
4
+
2
]
=
r
;
}
break
;
case
PIX_FMT_RGB555
:
palette16
=
(
unsigned
short
*
)
s
->
palette
;
for
(
i
=
0
;
i
<
PALETTE_COUNT
;
i
++
)
{
...
...
@@ -321,6 +310,7 @@ static void inline xan_wc3_build_palette(XanContext *s,
}
break
;
case
PIX_FMT_PAL8
:
case
PIX_FMT_RGBA32
:
palette32
=
(
unsigned
int
*
)
s
->
palette
;
for
(
i
=
0
;
i
<
PALETTE_COUNT
;
i
++
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment