diff options
author | Clément Bœsch <u@pkh.me> | 2017-03-23 11:27:41 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-03-23 11:27:41 +0100 |
commit | 7b3a3e6276c42e6974cba2e9f36d140b8d760b0b (patch) | |
tree | 1ec0ae018a39e18c287fae84c8966d2e3c2a65db | |
parent | 76e21e83acbec89ee0278e310d98c4e53216c374 (diff) | |
parent | b8d5070db6313f985562865edcfd08a01c2d7503 (diff) | |
download | ffmpeg-7b3a3e6276c42e6974cba2e9f36d140b8d760b0b.tar.gz |
Merge commit 'b8d5070db6313f985562865edcfd08a01c2d7503'
* commit 'b8d5070db6313f985562865edcfd08a01c2d7503':
avcodec: Document AV_PKT_DATA_PALETTE side data type
Merged-by: Clément Bœsch <u@pkh.me>
-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 b3479a7223..73ed68da9f 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1395,6 +1395,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, /** |