diff options
author | Peter Ross <pross@xvid.org> | 2011-02-10 17:25:13 +1100 |
---|---|---|
committer | Janne Grunau <janne-ffmpeg@jannau.net> | 2011-02-10 22:55:17 +0100 |
commit | 12c14cd4a8bf844f6f3d16ae18999bdb47999324 (patch) | |
tree | 2e7cb41002e12fc1b9dea49a67e65cce6314be5e /libavformat/avformat.h | |
parent | 44adbebe1744c68d66d7f811c38270fdcc89665a (diff) | |
download | ffmpeg-12c14cd4a8bf844f6f3d16ae18999bdb47999324.tar.gz |
add AV_DISPOSITION_HEARING_IMPAIRED and AV_DISPOSITION_VISUAL_IMPAIRED
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index bf6f96d2a4..f676dc214b 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -472,6 +472,8 @@ typedef struct AVIndexEntry { * even when user did not explicitly ask for subtitles. */ #define AV_DISPOSITION_FORCED 0x0040 +#define AV_DISPOSITION_HEARING_IMPAIRED 0x0080 /**< stream for hearing impaired audiences */ +#define AV_DISPOSITION_VISUAL_IMPAIRED 0x0100 /**< stream for visual impaired audiences */ /** * Stream structure. |