diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-30 23:15:56 -0800 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-13 08:15:51 -0700 |
commit | 4cb4680c1087a2cd13d4b0c9167a2eb3147f99d8 (patch) | |
tree | d49a81ba7293e9ecb49ae9c2c26bb40127a38362 /libavcodec | |
parent | f8bbebecfd7ea3dceb7c96f931beca33f80a3490 (diff) | |
download | ffmpeg-4cb4680c1087a2cd13d4b0c9167a2eb3147f99d8.tar.gz |
x86: dsputil_x86.h: K&R formatting cosmetics
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/dsputil_x86.h | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/libavcodec/x86/dsputil_x86.h b/libavcodec/x86/dsputil_x86.h index 990324ab22..8f1fc17474 100644 --- a/libavcodec/x86/dsputil_x86.h +++ b/libavcodec/x86/dsputil_x86.h @@ -104,12 +104,15 @@ "psubb "#regb", "#regr" \n\t" \ "psubb "#regd", "#regp" \n\t" -void ff_dsputilenc_init_mmx(DSPContext* c, AVCodecContext *avctx); -void ff_dsputil_init_pix_mmx(DSPContext* c, AVCodecContext *avctx); +void ff_dsputilenc_init_mmx(DSPContext *c, AVCodecContext *avctx); +void ff_dsputil_init_pix_mmx(DSPContext *c, AVCodecContext *avctx); -void ff_add_pixels_clamped_mmx(const int16_t *block, uint8_t *pixels, int line_size); -void ff_put_pixels_clamped_mmx(const int16_t *block, uint8_t *pixels, int line_size); -void ff_put_signed_pixels_clamped_mmx(const int16_t *block, uint8_t *pixels, int line_size); +void ff_add_pixels_clamped_mmx(const int16_t *block, uint8_t *pixels, + int line_size); +void ff_put_pixels_clamped_mmx(const int16_t *block, uint8_t *pixels, + int line_size); +void ff_put_signed_pixels_clamped_mmx(const int16_t *block, uint8_t *pixels, + int line_size); void ff_clear_block_mmx(int16_t *block); void ff_clear_block_sse(int16_t *block); @@ -181,9 +184,9 @@ STATIC void PFX1 ## _pixels16 ## TYPE ## CPUEXT(uint8_t *block, \ ptrdiff_t line_size, \ int h) \ { \ - PFX2 ## PFX1 ## _pixels8 ## TYPE ## CPUEXT(block, pixels, \ + PFX2 ## PFX1 ## _pixels8 ## TYPE ## CPUEXT(block, pixels, \ line_size, h); \ - PFX2 ## PFX1 ## _pixels8 ## TYPE ## CPUEXT(block + 8, pixels + 8, \ + PFX2 ## PFX1 ## _pixels8 ## TYPE ## CPUEXT(block + 8, pixels + 8, \ line_size, h); \ } |