diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2003-12-08 11:35:09 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2003-12-08 11:35:09 +0000 |
commit | 60efb3e42dc4c46bbe700b925f9ff076bc785c65 (patch) | |
tree | 9f629b949567d6b290ee46ad9e3ae601ce4567ac /libavcodec/truemotion1data.h | |
parent | 3c3f113ec1568fe7b8d26d71344d9dd7a77885be (diff) | |
download | ffmpeg-60efb3e42dc4c46bbe700b925f9ff076bc785c65.tar.gz |
cosmetics
Originally committed as revision 2572 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/truemotion1data.h')
-rw-r--r-- | libavcodec/truemotion1data.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/truemotion1data.h b/libavcodec/truemotion1data.h index afbd280a49..d56e015a4f 100644 --- a/libavcodec/truemotion1data.h +++ b/libavcodec/truemotion1data.h @@ -6,6 +6,8 @@ * GNU LGPL using the common understanding that data tables necessary for * decoding algorithms are not necessarily licensable. */ +#ifndef TRUEMOTION1DATA_H +#define TRUEMOTION1DATA_H /* Y delta tables, skinny and fat */ static int16_t ydt1[8] = { 0, -2, 2, -6, 6, -12, 12, -12 }; @@ -807,4 +809,5 @@ static uint8_t pc_tbl4[] = { 0x2,0x77 }; -uint8_t *tables[] = { pc_tbl2, pc_tbl3, pc_tbl4 }; +static uint8_t *tables[] = { pc_tbl2, pc_tbl3, pc_tbl4 }; +#endif |