Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2013-03-30 18:35:06 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2017-08-04 20:12:11 +0300
commita900204f627d01b63adf13a1ed182455866c14c2 (patch)
tree199f86481a0569a97e0d55739e7c55cba39c6bce /libavcodec
parenteef2b5e906374e0ad30187c05fef7a0b86484c61 (diff)
matroskadec_haali: send new extradata and stream params on segment changes
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/avcodec.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 6c248dd4e0..d4a28334a0 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -1431,6 +1431,9 @@ enum AVPacketSideDataType {
* if (param_flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS)
* s32le width
* s32le height
+ * if (param_flags & AV_SIDE_DATA_PARAM_CHANGE_ASPECTRATIO)
+ * s32le num
+ * s32le den
* @endcode
*/
AV_PKT_DATA_PARAM_CHANGE,
@@ -1714,6 +1717,7 @@ enum AVSideDataParamChangeFlags {
AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT = 0x0002,
AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE = 0x0004,
AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS = 0x0008,
+ AV_SIDE_DATA_PARAM_CHANGE_ASPECTRATIO = 0x8000,
};
/**
* @}