diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-09-20 17:11:14 -0400 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-10-02 15:42:03 -0400 |
commit | b8d5070db6313f985562865edcfd08a01c2d7503 (patch) | |
tree | 9c3748ff142f75603f22144148a579bc33d3e439 /libavcodec/avcodec.h | |
parent | 497c087939e32b26b792515d2dbc7e22561203f7 (diff) | |
download | ffmpeg-b8d5070db6313f985562865edcfd08a01c2d7503.tar.gz |
avcodec: Document AV_PKT_DATA_PALETTE side data type
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 607688cf6f..167525dda3 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1189,6 +1189,11 @@ typedef struct AVCPBProperties { * @{ */ enum AVPacketSideDataType { + /** + * An AV_PKT_DATA_PALETTE side data packet contains exactly AVPALETTE_SIZE + * bytes worth of palette. This side data signals that a new palette is + * present. + */ AV_PKT_DATA_PALETTE, /** |