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:
authorDiego Biurrun <diego@biurrun.de>2012-10-18 21:15:43 +0400
committerDiego Biurrun <diego@biurrun.de>2012-10-20 04:34:29 +0400
commitc08536979be1a4e9a29e3ee7a6b79f6d73bb12d2 (patch)
treef6b1ca4ccf6491c8c99acae2597fb43dfd497fcd /libavutil/lzo.h
parentc9ef43215c7d68c2cdcdbe02287aa114f27a32ed (diff)
avutil/lzo: K&R formatting cosmetics
Diffstat (limited to 'libavutil/lzo.h')
-rw-r--r--libavutil/lzo.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavutil/lzo.h b/libavutil/lzo.h
index 1b774a53bc..e3c6c01c6b 100644
--- a/libavutil/lzo.h
+++ b/libavutil/lzo.h
@@ -32,18 +32,18 @@
#include <stdint.h>
/** @name Error flags returned by av_lzo1x_decode
- * @{ */
+ * @{ */
/// end of the input buffer reached before decoding finished
-#define AV_LZO_INPUT_DEPLETED 1
+#define AV_LZO_INPUT_DEPLETED 1
/// decoded data did not fit into output buffer
-#define AV_LZO_OUTPUT_FULL 2
+#define AV_LZO_OUTPUT_FULL 2
/// a reference to previously decoded data was wrong
#define AV_LZO_INVALID_BACKPTR 4
/// a non-specific error in the compressed bitstream
-#define AV_LZO_ERROR 8
+#define AV_LZO_ERROR 8
/** @} */
-#define AV_LZO_INPUT_PADDING 8
+#define AV_LZO_INPUT_PADDING 8
#define AV_LZO_OUTPUT_PADDING 12
/**