diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-03-28 01:13:54 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-29 16:11:09 +0100 |
commit | 53c20f17c78d1d8a0fc2505868f201e69ff59cc5 (patch) | |
tree | 7d543871ede0f0adf63d3c5fcaef907275e42758 /libavcodec/vp8dsp.h | |
parent | 6adf3bc42e36242d487636786e995149bbb849fe (diff) | |
download | ffmpeg-53c20f17c78d1d8a0fc2505868f201e69ff59cc5.tar.gz |
vp8: K&R formatting cosmetics
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/vp8dsp.h')
-rw-r--r-- | libavcodec/vp8dsp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vp8dsp.h b/libavcodec/vp8dsp.h index 877e264ff9..9e313a7067 100644 --- a/libavcodec/vp8dsp.h +++ b/libavcodec/vp8dsp.h @@ -30,8 +30,8 @@ #include <stddef.h> #include <stdint.h> -typedef void (*vp8_mc_func)(uint8_t *dst/*align 8*/, ptrdiff_t dstStride, - uint8_t *src/*align 1*/, ptrdiff_t srcStride, +typedef void (*vp8_mc_func)(uint8_t *dst /* align 8 */, ptrdiff_t dstStride, + uint8_t *src /* align 1 */, ptrdiff_t srcStride, int h, int x, int y); typedef struct VP8DSPContext { |