mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
* init for inv_zigzag_direct16 moved to init block
Originally committed as revision 1204 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5abd509acd
commit
92ddb69283
@ -1357,7 +1357,10 @@ void dsputil_init(DSPContext* c, unsigned mask)
|
|||||||
for(i=0;i<512;i++) {
|
for(i=0;i<512;i++) {
|
||||||
squareTbl[i] = (i - 256) * (i - 256);
|
squareTbl[i] = (i - 256) * (i - 256);
|
||||||
}
|
}
|
||||||
init_done = 1;
|
|
||||||
|
for(i=0; i<64; i++) inv_zigzag_direct16[ff_zigzag_direct[i]]= i+1;
|
||||||
|
|
||||||
|
init_done = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
c->get_pixels = get_pixels_c;
|
c->get_pixels = get_pixels_c;
|
||||||
@ -1453,7 +1456,6 @@ void dsputil_init(DSPContext* c, unsigned mask)
|
|||||||
dsputil_init_mmi(c, mask);
|
dsputil_init_mmi(c, mask);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
for(i=0; i<64; i++) inv_zigzag_direct16[ff_zigzag_direct[i]]= i+1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* remove any non bit exact operation (testing purpose) */
|
/* remove any non bit exact operation (testing purpose) */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user