diff options
author | FlyingRat <flyingrat@outlook.com> | 2013-04-07 16:36:04 +0200 |
---|---|---|
committer | FlyingRat <flyingrat@outlook.com> | 2013-04-07 16:36:04 +0200 |
commit | 0e63a815aa6af63a21848e04b683d3f506dd41b1 (patch) | |
tree | 002f61d8a5b1d294d99fd4ba5b6982d76a612f0c /lib/ffmpeg/libavcodec/targa.h | |
parent | 71862137c5337fc678681a23bfbc65f4db7a7b2f (diff) |
[FFmpeg] version bump to n1.2 (rev e820e3a) - lib/ffmpeg
This commit now contains the original patches sub directory:
patches - Org dir that contains applied xbmc custom patches.
patches/README-patches - New README file with info about xbmc patches.
patches/obsolete-patches - New dir with obsolete xbmc patches.
Diffstat (limited to 'lib/ffmpeg/libavcodec/targa.h')
-rw-r--r-- | lib/ffmpeg/libavcodec/targa.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/ffmpeg/libavcodec/targa.h b/lib/ffmpeg/libavcodec/targa.h index 158a5ea0f4..c2f522465b 100644 --- a/lib/ffmpeg/libavcodec/targa.h +++ b/lib/ffmpeg/libavcodec/targa.h @@ -38,4 +38,11 @@ enum TargaCompr { TGA_RLE = 8, // flag pointing that data is RLE-coded }; +enum TargaFlags { + TGA_RIGHTTOLEFT = 0x10, // right-to-left (flipped horizontally) + TGA_TOPTOBOTTOM = 0x20, // top-to-bottom (NOT flipped vertically) + TGA_INTERLEAVE2 = 0x40, // 2-way interleave, odd then even lines + TGA_INTERLEAVE4 = 0x80, // 4-way interleave +}; + #endif /* AVCODEC_TARGA_H */ |