summaryrefslogtreecommitdiff
path: root/libavcodec/indeo3.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-12-13 13:34:59 +0000
committerDiego Biurrun <diego@biurrun.de>2008-12-13 13:34:59 +0000
commitbda4e3940a12c386a588f6df42daaeb1758aa866 (patch)
tree5e6e3cd83540a6ff12035a228f5995211658219c /libavcodec/indeo3.c
parentf98dcdedda9cd881db3d67f73ebca934a5b4522d (diff)
Replace 'typedef struct ustr_t' by 'struct ustr', _t is POSIX namespace.
Originally committed as revision 16099 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/indeo3.c')
-rw-r--r--libavcodec/indeo3.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c
index 533057d46f..36c21c4398 100644
--- a/libavcodec/indeo3.c
+++ b/libavcodec/indeo3.c
@@ -147,7 +147,7 @@ static av_cold void iv_free_func(Indeo3DecodeContext *s)
av_free(s->corrector_type);
}
-typedef struct {
+struct ustr {
long xpos;
long ypos;
long width;
@@ -155,7 +155,7 @@ typedef struct {
long split_flag;
long split_direction;
long usl7;
-} ustr_t;
+};
#define LV1_CHECK(buf1,rle_v3,lv1,lp2) \
@@ -213,7 +213,7 @@ static void iv_Decode_Chunk(Indeo3DecodeContext *s,
uint32_t *cur_lp, *ref_lp;
const uint32_t *correction_lp[2], *correctionloworder_lp[2], *correctionhighorder_lp[2];
uint8_t *correction_type_sp[2];
- ustr_t strip_tbl[20], *strip;
+ struct ustr strip_tbl[20], *strip;
int i, j, k, lp1, lp2, flag1, cmd, blks_width, blks_height, region_160_width,
rle_v1, rle_v2, rle_v3;
unsigned short res;
@@ -252,14 +252,14 @@ static void iv_Decode_Chunk(Indeo3DecodeContext *s,
if(cmd == 0) {
strip++;
- memcpy(strip, strip-1, sizeof(ustr_t));
+ memcpy(strip, strip-1, sizeof(struct ustr));
strip->split_flag = 1;
strip->split_direction = 0;
strip->height = (strip->height > 8 ? ((strip->height+8)>>4)<<3 : 4);
continue;
} else if(cmd == 1) {
strip++;
- memcpy(strip, strip-1, sizeof(ustr_t));
+ memcpy(strip, strip-1, sizeof(struct ustr));
strip->split_flag = 1;
strip->split_direction = 1;
strip->width = (strip->width > 8 ? ((strip->width+8)>>4)<<3 : 4);