# HG changeset patch # User kostya # Date 1233501620 0 # Node ID ad457492fd92b9d1f6d4c5aaa78054b022567714 # Parent 42e258f2b931294642081ab12a2bca8c43b7a596 Factorize stream reading in TM2 decoder diff -r 42e258f2b931 -r ad457492fd92 truemotion2.c --- a/truemotion2.c Sun Feb 01 15:03:40 2009 +0000 +++ b/truemotion2.c Sun Feb 01 15:20:20 2009 +0000 @@ -757,13 +757,17 @@ return keyframe; } +static const int tm2_stream_order[TM2_NUM_STREAMS] = { + TM2_C_HI, TM2_C_LO, TM2_L_HI, TM2_L_LO, TM2_UPD, TM2_MOT, TM2_TYPE +}; + static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, const uint8_t *buf, int buf_size) { TM2Context * const l = avctx->priv_data; AVFrame * const p= (AVFrame*)&l->pic; - int skip, t; + int i, skip, t; p->reference = 1; p->buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE; @@ -778,33 +782,13 @@ if(skip == -1) return -1; - t = tm2_read_stream(l, buf + skip, TM2_C_HI); - if(t == -1) - return -1; - skip += t; - t = tm2_read_stream(l, buf + skip, TM2_C_LO); - if(t == -1) - return -1; - skip += t; - t = tm2_read_stream(l, buf + skip, TM2_L_HI); - if(t == -1) - return -1; - skip += t; - t = tm2_read_stream(l, buf + skip, TM2_L_LO); - if(t == -1) - return -1; - skip += t; - t = tm2_read_stream(l, buf + skip, TM2_UPD); - if(t == -1) - return -1; - skip += t; - t = tm2_read_stream(l, buf + skip, TM2_MOT); - if(t == -1) - return -1; - skip += t; - t = tm2_read_stream(l, buf + skip, TM2_TYPE); - if(t == -1) - return -1; + for(i = 0; i < TM2_NUM_STREAMS; i++){ + t = tm2_read_stream(l, buf + skip, tm2_stream_order[i]); + if(t == -1){ + return -1; + } + skip += t; + } p->key_frame = tm2_decode_blocks(l, p); if(p->key_frame) p->pict_type = FF_I_TYPE;