summaryrefslogtreecommitdiff
path: root/libavcodec/targa.h
diff options
context:
space:
mode:
authorBobby Bingham <uhmmmm@gmail.com>2012-10-08 00:37:26 -0500
committerBobby Bingham <uhmmmm@gmail.com>2012-10-08 22:47:57 -0500
commitc2eec3df89961d10d455acf1fdbde12c4e7d7227 (patch)
tree31a4043a8b2c6eb3c16b29556cad80ed26e3c9da /libavcodec/targa.h
parent3d9cdfdce76a121945c3626a66739f47a055e103 (diff)
targa: support 2-way and 4-way interleaved files
Fixes ticket #701 Signed-off-by: Bobby Bingham <uhmmmm@gmail.com>
Diffstat (limited to 'libavcodec/targa.h')
-rw-r--r--libavcodec/targa.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/targa.h b/libavcodec/targa.h
index 2f2e3829dd..c2f522465b 100644
--- a/libavcodec/targa.h
+++ b/libavcodec/targa.h
@@ -41,6 +41,8 @@ enum TargaCompr {
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 */