diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-02-19 15:29:06 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-03-24 06:07:51 +0100 |
commit | 5a7e35dd2351c30bab45177b9482cb8833a0ca78 (patch) | |
tree | 60b6fc7dc5d4a2f3a0a342548392e751214ec3d3 /libavutil/frame.h | |
parent | 25b32586566f285d797737863c97a1c5c9c84e2b (diff) | |
download | ffmpeg-5a7e35dd2351c30bab45177b9482cb8833a0ca78.tar.gz |
Add replaygain side data type and code for parsing replaygain tags.
Diffstat (limited to 'libavutil/frame.h')
-rw-r--r-- | libavutil/frame.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavutil/frame.h b/libavutil/frame.h index 6b168e2cb9..e9bc6aeb40 100644 --- a/libavutil/frame.h +++ b/libavutil/frame.h @@ -69,6 +69,10 @@ enum AVFrameSideDataType { * The data is the AVDownmixInfo struct defined in libavutil/downmix_info.h. */ AV_FRAME_DATA_DOWNMIX_INFO, + /** + * ReplayGain information in the form of the AVReplayGain struct. + */ + AV_FRAME_DATA_REPLAYGAIN, }; typedef struct AVFrameSideData { |