Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Vignali <martin.vignali@gmail.com>2018-11-18 01:35:35 +0300
committerMartin Vignali <martin.vignali@gmail.com>2018-12-02 14:55:31 +0300
commitc097a32e93b4b4d9cb576bf21014b19121806161 (patch)
treee83860e6b21db0e55fbfc9677c0a68c62f595c19 /libavcodec/tests
parenta970920026010bd9e03f99017c305212b889d4a5 (diff)
avcodec/proresdec : rename dsp part for 10b and check dspinit for supported bits per raw sample
based on patch by Kieran Kunhya
Diffstat (limited to 'libavcodec/tests')
-rw-r--r--libavcodec/tests/dct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tests/dct.c b/libavcodec/tests/dct.c
index e8fa4a3cc1..2ca8039c01 100644
--- a/libavcodec/tests/dct.c
+++ b/libavcodec/tests/dct.c
@@ -73,7 +73,7 @@ static void ff_prores_idct_wrap(int16_t *dst){
for(i=0; i<64; i++){
qmat[i]=4;
}
- ff_prores_idct(dst, qmat);
+ ff_prores_idct_10(dst, qmat);
for(i=0; i<64; i++) {
dst[i] -= 512;
}