]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/proresdsp.h
libswscale: Remove unused deprecated functions, make used ones static
[ffmpeg] / libavcodec / proresdsp.h
index 558fae53bf10a9d7884915a616fc3a28b804cdf9..37ba76b8e49c844102cdc26bd070935770972a2d 100644 (file)
 #include <stdint.h>
 #include "avcodec.h"
 
-#define PRORES_BITS_PER_SAMPLE 10 ///< output precision of prores decoder
-
 typedef struct ProresDSPContext {
     int idct_permutation_type;
     uint8_t idct_permutation[64];
     void (*idct_put)(uint16_t *out, ptrdiff_t linesize, int16_t *block, const int16_t *qmat);
 } ProresDSPContext;
 
-void ff_proresdsp_init(ProresDSPContext *dsp, AVCodecContext *avctx);
+int ff_proresdsp_init(ProresDSPContext *dsp, AVCodecContext *avctx);
 
 void ff_proresdsp_init_x86(ProresDSPContext *dsp, AVCodecContext *avctx);