diff options
author | wm4 <nfxjfg@googlemail.com> | 2015-09-02 18:59:37 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-09-07 12:36:04 +0200 |
commit | b8b5d8274471129f122858bc74ad09284dae6ab7 (patch) | |
tree | 11a0aeb2bffe927b4f9732099358fd7061aaec87 /libavutil/pixdesc.h | |
parent | 77cf23668991bfd1fb69339f13e1511b4186b7b3 (diff) | |
download | ffmpeg-b8b5d8274471129f122858bc74ad09284dae6ab7.tar.gz |
lavu: extend size of the AVPixFmtDescriptor.flags field
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'libavutil/pixdesc.h')
-rw-r--r-- | libavutil/pixdesc.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavutil/pixdesc.h b/libavutil/pixdesc.h index 351391389c..c36f5d12f4 100644 --- a/libavutil/pixdesc.h +++ b/libavutil/pixdesc.h @@ -87,7 +87,11 @@ typedef struct AVPixFmtDescriptor { * This value only refers to the chroma components. */ uint8_t log2_chroma_h; - uint8_t flags; + + /** + * Combination of AV_PIX_FMT_FLAG_... flags. + */ + uint64_t flags; /** * Parameters that describe how pixels are packed. If the format |