diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-12-27 12:52:59 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-27 12:52:59 +0100 |
commit | ddb9a24a7f11c448263ef9b163e8425832cb089c (patch) | |
tree | c5b30aba2e7ad4170b4e885b646ba0a1908eaf66 /libavcodec/avcodec.h | |
parent | d16079abf473b51be7686d20f8014bb48a095722 (diff) | |
parent | 6c99c92a42add7f6a462114d5a4a53c93c551058 (diff) | |
download | ffmpeg-ddb9a24a7f11c448263ef9b163e8425832cb089c.tar.gz |
Merge commit '6c99c92a42add7f6a462114d5a4a53c93c551058'
* commit '6c99c92a42add7f6a462114d5a4a53c93c551058':
libavcodec: add AV_HWACCEL_ALLOW_HIGH_DEPTH flag
Conflicts:
libavcodec/version.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 527824601e..99467bb069 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -3404,6 +3404,12 @@ typedef struct AVHWAccel { #define AV_HWACCEL_FLAG_IGNORE_LEVEL (1 << 0) /** + * Hardware acceleration can output YUV pixel formats with a different chroma + * sampling than 4:2:0 and/or other than 8 bits per component. + */ +#define AV_HWACCEL_FLAG_ALLOW_HIGH_DEPTH (1 << 1) + +/** * @} */ |