diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-11-14 12:22:06 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-01-27 09:17:48 +0100 |
commit | 728685f37ab333ca35980bd01766c78d197f784a (patch) | |
tree | a7a8cb43ab86dd21d5df02d64b312c96a9ca240b /libavutil/frame.h | |
parent | 80a11de7dca315505bf203ce9c8c016e71724fd2 (diff) | |
download | ffmpeg-728685f37ab333ca35980bd01766c78d197f784a.tar.gz |
Add a side data type for audio service type.
Currently, audio service type is a field in AVCodecContext. However,
side data is more appropriate for this kind of information.
Diffstat (limited to 'libavutil/frame.h')
-rw-r--r-- | libavutil/frame.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavutil/frame.h b/libavutil/frame.h index d3360c4b25..28170e7648 100644 --- a/libavutil/frame.h +++ b/libavutil/frame.h @@ -87,6 +87,12 @@ enum AVFrameSideDataType { * in ETSI TS 101 154 using enum AVActiveFormatDescription. */ AV_FRAME_DATA_AFD, + + /** + * This side data must be associated with an audio frame and corresponds to + * enum AVAudioServiceType defined in avcodec.h. + */ + AV_FRAME_DATA_AUDIO_SERVICE_TYPE, }; enum AVActiveFormatDescription { |