diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-12-17 13:18:18 +0100 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-12-17 13:18:18 +0100 |
commit | a7d5b9f1c3ca2e63b0eb882eabadfa1461d17a2d (patch) | |
tree | 5e6a5a5085c0540c54263911843114c44c42fc98 /libavcodec/avcodec.h | |
parent | 30833d121e24fc644c9c4e6ca07df3e9e4963180 (diff) | |
parent | 84adab333cddeefc3cfd843089dee23f58bd372c (diff) | |
download | ffmpeg-a7d5b9f1c3ca2e63b0eb882eabadfa1461d17a2d.tar.gz |
Merge commit '84adab333cddeefc3cfd843089dee23f58bd372c'
* commit '84adab333cddeefc3cfd843089dee23f58bd372c':
lavc: add stream-global packet side data
Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index a60d28c5ab..2821286d23 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -3301,6 +3301,16 @@ typedef struct AVCodecContext { unsigned properties; #define FF_CODEC_PROPERTY_LOSSLESS 0x00000001 #define FF_CODEC_PROPERTY_CLOSED_CAPTIONS 0x00000002 + + /** + * Additional data associated with the entire coded stream. + * + * - decoding: unused + * - encoding: may be set by libavcodec after avcodec_open2(). + */ + AVPacketSideData *coded_side_data; + int nb_coded_side_data; + } AVCodecContext; AVRational av_codec_get_pkt_timebase (const AVCodecContext *avctx); |