X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fh264dsp.h;h=82e147fe35741e0d55723fb82d0b9336ef67e196;hb=7ff1a4b10f2d7f9a4ae1c72e1259b4ed7d13e316;hp=f0eaacc79e6b214840e04fdcf42cedae82be47e2;hpb=d1d9b93e9a212c030ebde1993a88694e25feee7b;p=ffmpeg diff --git a/libavcodec/h264dsp.h b/libavcodec/h264dsp.h index f0eaacc79e6..82e147fe357 100644 --- a/libavcodec/h264dsp.h +++ b/libavcodec/h264dsp.h @@ -101,6 +101,10 @@ typedef struct H264DSPContext { void (*h264_luma_dc_dequant_idct)(int16_t *output, int16_t *input /*align 16*/, int qmul); 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); } H264DSPContext; void ff_h264dsp_init(H264DSPContext *c, const int bit_depth,