diff options
author | Martin Vignali <martin.vignali@gmail.com> | 2018-11-17 23:35:35 +0100 |
---|---|---|
committer | Martin Vignali <martin.vignali@gmail.com> | 2018-12-02 12:55:31 +0100 |
commit | c097a32e93b4b4d9cb576bf21014b19121806161 (patch) | |
tree | e83860e6b21db0e55fbfc9677c0a68c62f595c19 /libavcodec/tests | |
parent | a970920026010bd9e03f99017c305212b889d4a5 (diff) | |
download | ffmpeg-c097a32e93b4b4d9cb576bf21014b19121806161.tar.gz |
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.c | 2 |
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; } |