]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/h264dsp.h
h264: integrate clear_blocks calls with IDCT.
[ffmpeg] / libavcodec / h264dsp.h
index 82e147fe35741e0d55723fb82d0b9336ef67e196..98ea15c330ad4457e9266448a8da1cd363052a09 100644 (file)
@@ -103,8 +103,8 @@ typedef struct H264DSPContext {
     void (*h264_chroma_dc_dequant_idct)(int16_t *block, int qmul);
 
     /* bypass-transform */
-    void (*h264_add_pixels8)(uint8_t *dst, int16_t *block, int stride);
-    void (*h264_add_pixels4)(uint8_t *dst, int16_t *block, int stride);
+    void (*h264_add_pixels8_clear)(uint8_t *dst, int16_t *block, int stride);
+    void (*h264_add_pixels4_clear)(uint8_t *dst, int16_t *block, int stride);
 } H264DSPContext;
 
 void ff_h264dsp_init(H264DSPContext *c, const int bit_depth,