diff options
author | Gabriel Dume <gabriel.ddx84@gmail.com> | 2014-09-01 15:18:59 -0400 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-09-02 04:03:45 -0700 |
commit | ff4d1aa8bc3f4fe9d1f684f760b29c51adb569ef (patch) | |
tree | fcfa97314a8b3625eb64843f1853bdfe6f77fdb7 /libavcodec/flv.h | |
parent | f61e47dd68582529bcf6d42d861c70a320cd1b67 (diff) | |
download | ffmpeg-ff4d1aa8bc3f4fe9d1f684f760b29c51adb569ef.tar.gz |
flv: K&R formatting cosmetics
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/flv.h')
-rw-r--r-- | libavcodec/flv.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libavcodec/flv.h b/libavcodec/flv.h index 3d9a2d5232..801e357e7a 100644 --- a/libavcodec/flv.h +++ b/libavcodec/flv.h @@ -1,5 +1,6 @@ /* * FLV specific private header. + * * This file is part of Libav. * * Libav is free software; you can redistribute it and/or @@ -20,12 +21,13 @@ #ifndef AVCODEC_FLV_H #define AVCODEC_FLV_H -#include "mpegvideo.h" #include "get_bits.h" +#include "mpegvideo.h" #include "put_bits.h" -void ff_flv_encode_picture_header(MpegEncContext * s, int picture_number); -void ff_flv2_encode_ac_esc(PutBitContext *pb, int slevel, int level, int run, int last); +void ff_flv_encode_picture_header(MpegEncContext *s, int picture_number); +void ff_flv2_encode_ac_esc(PutBitContext *pb, int slevel, int level, int run, + int last); int ff_flv_decode_picture_header(MpegEncContext *s); void ff_flv2_decode_ac_esc(GetBitContext *gb, int *level, int *run, int *last); |