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/vp8_parser.c | |
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/vp8_parser.c')
-rw-r--r-- | libavcodec/vp8_parser.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/libavcodec/vp8_parser.c b/libavcodec/vp8_parser.c index 196de83935..8f6459ccec 100644 --- a/libavcodec/vp8_parser.c +++ b/libavcodec/vp8_parser.c @@ -21,18 +21,19 @@ #include "parser.h" static int parse(AVCodecParserContext *s, - AVCodecContext *avctx, - const uint8_t **poutbuf, int *poutbuf_size, - const uint8_t *buf, int buf_size) + AVCodecContext *avctx, + const uint8_t **poutbuf, int *poutbuf_size, + const uint8_t *buf, int buf_size) { - s->pict_type= (buf[0]&0x01) ? AV_PICTURE_TYPE_P : AV_PICTURE_TYPE_I; + s->pict_type = (buf[0] & 0x01) ? AV_PICTURE_TYPE_P + : AV_PICTURE_TYPE_I; - *poutbuf = buf; + *poutbuf = buf; *poutbuf_size = buf_size; return buf_size; } AVCodecParser ff_vp8_parser = { - .codec_ids = { AV_CODEC_ID_VP8 }, - .parser_parse = parse, + .codec_ids = { AV_CODEC_ID_VP8 }, + .parser_parse = parse, }; |