Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Dume <gabriel.ddx84@gmail.com>2014-09-01 23:18:59 +0400
committerDiego Biurrun <diego@biurrun.de>2014-09-02 15:03:45 +0400
commitff4d1aa8bc3f4fe9d1f684f760b29c51adb569ef (patch)
treefcfa97314a8b3625eb64843f1853bdfe6f77fdb7 /libavcodec/flv.h
parentf61e47dd68582529bcf6d42d861c70a320cd1b67 (diff)
flv: K&R formatting cosmetics
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/flv.h')
-rw-r--r--libavcodec/flv.h8
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);