12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef AVCODEC_MSS34DSP_H
- #define AVCODEC_MSS34DSP_H
- #include <stddef.h>
- #include <stdint.h>
- void ff_mss34_gen_quant_mat(uint16_t *qmat, int quality, int luma);
- void ff_mss34_dct_put(uint8_t *dst, ptrdiff_t stride, int *block);
- #endif
|