Skip to content
Snippets Groups Projects
Commit ea89d080 authored by Niklas Haas's avatar Niklas Haas Committed by Steve Lhomme
Browse files

vlc_es: add ICC profile struct

We store the ICC profile as part of the (ancillary) data allocation,
using a trailing unsized array. This is because we need to copy it in
and out of various libraries anyway, to avoid having to expose things
like AVBufferRef.

The (as of writing) current ICC specification can be found at
https://www.color.org/specification/ICC.1-2022-05.pdf
parent c0b2f318
No related branches found
No related tags found
1 merge request!2013Basic support for embedded ICC profiles
......@@ -601,6 +601,18 @@ typedef struct vlc_video_dovi_metadata_t
} nlq[3];
} vlc_video_dovi_metadata_t;
/**
* Embedded ICC profiles
*/
#define VLC_ANCILLARY_ID_ICC VLC_FOURCC('i','C','C','P')
typedef struct vlc_icc_profile_t
{
size_t size;
uint8_t data[]; /* binary profile data, see ICC.1:2022 (or later) */
} vlc_icc_profile_t;
/**
* subtitles format description
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment