diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2008-11-18 20:48:26 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2008-11-18 20:48:26 +0000 |
commit | 195b34904164c233aa513dab92880824e0cb552c (patch) | |
tree | bdabafa7a452d427d341759910cbc7f4d8c194af /libavcodec/dv.c | |
parent | 1ac1217bd6a04ad077fc17e92a6bf164d4d02ee3 (diff) | |
download | ffmpeg-195b34904164c233aa513dab92880824e0cb552c.tar.gz |
Getting rid of huge static DV tables
Originally committed as revision 15874 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 120 |
1 files changed, 117 insertions, 3 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index f7eec637f9..b195583022 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -90,9 +90,124 @@ static inline int dv_work_pool_size(const DVprofile *d) return size; } +static inline void dv_calc_mb_coordinates(const DVprofile *d, int chan, int seq, int slot, + uint16_t *tbl) +{ + const static uint8_t off[] = { 2, 6, 8, 0, 4 }; + const static uint8_t shuf1[] = { 36, 18, 54, 0, 72 }; + const static uint8_t shuf2[] = { 24, 12, 36, 0, 48 }; + const static uint8_t shuf3[] = { 18, 9, 27, 0, 36 }; + + const static uint8_t l_start[] = {0, 4, 9, 13, 18, 22, 27, 31, 36, 40}; + const static uint8_t l_start_shuffled[] = { 9, 4, 13, 0, 18 }; + + const static uint8_t serpent1[] = {0, 1, 2, 2, 1, 0, + 0, 1, 2, 2, 1, 0, + 0, 1, 2, 2, 1, 0, + 0, 1, 2, 2, 1, 0, + 0, 1, 2}; + const static uint8_t serpent2[] = {0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 0, + 0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 0, + 0, 1, 2, 3, 4, 5}; + + const static uint8_t remap[][2] = {{ 0, 0}, { 0, 0}, { 0, 0}, { 0, 0}, /* dummy */ + { 0, 0}, { 0, 1}, { 0, 2}, { 0, 3}, {10, 0}, + {10, 1}, {10, 2}, {10, 3}, {20, 0}, {20, 1}, + {20, 2}, {20, 3}, {30, 0}, {30, 1}, {30, 2}, + {30, 3}, {40, 0}, {40, 1}, {40, 2}, {40, 3}, + {50, 0}, {50, 1}, {50, 2}, {50, 3}, {60, 0}, + {60, 1}, {60, 2}, {60, 3}, {70, 0}, {70, 1}, + {70, 2}, {70, 3}, { 0,64}, { 0,65}, { 0,66}, + {10,64}, {10,65}, {10,66}, {20,64}, {20,65}, + {20,66}, {30,64}, {30,65}, {30,66}, {40,64}, + {40,65}, {40,66}, {50,64}, {50,65}, {50,66}, + {60,64}, {60,65}, {60,66}, {70,64}, {70,65}, + {70,66}, { 0,67}, {20,67}, {40,67}, {60,67}}; + + int i, k, m; + int x, y, blk; + + for (m=0; m<5; m++) { + switch (d->width) { + case 1440: + blk = (chan*11+seq)*27+slot; + + if (chan == 0 && seq == 11) { + x = m*27+slot; + if (x<90) { + y = 0; + } else { + x = (x - 90)*2; + y = 67; + } + } else { + i = (4*chan + blk + off[m])%11; + k = (blk/11)%27; + + x = shuf1[m] + (chan&1)*9 + k%9; + y = (i*3+k/9)*2 + (chan>>1) + 1; + } + tbl[m] = (x<<1)|(y<<9); + break; + case 1280: + blk = (chan*10+seq)*27+slot; + + i = (4*chan + (seq/5) + 2*blk + off[m])%10; + k = (blk/5)%27; + + x = shuf1[m]+(chan&1)*9 + k%9; + y = (i*3+k/9)*2 + (chan>>1) + 4; + + if (x >= 80) { + x = remap[y][0]+((x-80)<<(y>59)); + y = remap[y][1]; + } + tbl[m] = (x<<1)|(y<<9); + break; + case 960: + blk = (chan*10+seq)*27+slot; + + i = (4*chan + (seq/5) + 2*blk + off[m])%10; + k = (blk/5)%27 + (i&1)*3; + + x = shuf2[m] + k%6 + 6*(chan&1); + y = l_start[i] + k/6 + 45*(chan>>1); + tbl[m] = (x<<1)|(y<<9); + break; + case 720: + switch (d->pix_fmt) { + case PIX_FMT_YUV422P: + x = shuf3[m] + slot/3; + y = serpent1[slot] + + ((((seq + off[m]) % d->difseg_size)<<1) + chan)*3; + tbl[m] = (x<<1)|(y<<8); + break; + case PIX_FMT_YUV420P: + x = shuf3[m] + slot/3; + y = serpent1[slot] + + ((seq + off[m]) % d->difseg_size)*3; + tbl[m] = (x<<1)|(y<<9); + break; + case PIX_FMT_YUV411P: + i = (seq + off[m]) % d->difseg_size; + k = slot + ((m==1||m==2)?3:0); + + x = l_start_shuffled[m] + k/6; + y = serpent2[k] + i*6; + if (x>21) + y = y*2 - i*6; + tbl[m] = (x<<2)|(y<<8); + break; + } + default: + break; + } + } +} + static int dv_init_dynamic_tables(const DVprofile *d) { - int j,i,c,s,p,k; + int j,i,c,s,p; if (d->work_chunks[dv_work_pool_size(d)-1].buf_offset) return 0; @@ -105,8 +220,7 @@ static int dv_init_dynamic_tables(const DVprofile *d) p += !(j%3); if (!(DV_PROFILE_IS_1080i50(d) && c != 0 && s == 11) && !(DV_PROFILE_IS_720p50(d) && s > 9)) { - for (k=0; k<5; k++) - d->work_chunks[i].mb_coordinates[k] = d->video_place[(c*d->difseg_size+s)*27*5 + j*5 + k]; + dv_calc_mb_coordinates(d, c, s, j, &d->work_chunks[i].mb_coordinates[0]); d->work_chunks[i++].buf_offset = p; } p += 5; |