diff options
author | Peter Ross <pross@xvid.org> | 2011-02-10 17:25:13 +1100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-11 02:54:10 +0100 |
commit | 8270db386f1295f21ff55228561823ce414d0d71 (patch) | |
tree | 8ab7537c12d2f678687fb7cdb124d61e52f3e254 /libavformat/avformat.h | |
parent | 98ec828775235b7d3c59cf007d8c75db4cb93de1 (diff) | |
download | ffmpeg-8270db386f1295f21ff55228561823ce414d0d71.tar.gz |
add AV_DISPOSITION_HEARING_IMPAIRED and AV_DISPOSITION_VISUAL_IMPAIRED
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
(cherry picked from commit 12c14cd4a8bf844f6f3d16ae18999bdb47999324)
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 aeaf902668..e65ff89699 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. |