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
28a807e2
Commit
28a807e2
authored
Mar 26, 2013
by
Nicolas Bertrand
Committed by
Diego Biurrun
Apr 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libopenjpeg: Add support for XYZ colorspace, found in DCINEMA frames
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
8c652645
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
libopenjpegdec.c
libavcodec/libopenjpegdec.c
+4
-1
No files found.
libavcodec/libopenjpegdec.c
View file @
28a807e2
...
...
@@ -57,12 +57,15 @@
AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, \
AV_PIX_FMT_YUV444P16
#define XYZ_PIXEL_FORMATS AV_PIX_FMT_XYZ12
static
const
enum
AVPixelFormat
rgb_pix_fmts
[]
=
{
RGB_PIXEL_FORMATS
};
static
const
enum
AVPixelFormat
gray_pix_fmts
[]
=
{
GRAY_PIXEL_FORMATS
};
static
const
enum
AVPixelFormat
yuv_pix_fmts
[]
=
{
YUV_PIXEL_FORMATS
};
static
const
enum
AVPixelFormat
any_pix_fmts
[]
=
{
RGB_PIXEL_FORMATS
,
GRAY_PIXEL_FORMATS
,
YUV_PIXEL_FORMATS
};
YUV_PIXEL_FORMATS
,
XYZ_PIXEL_FORMATS
};
typedef
struct
{
AVClass
*
class
;
...
...
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