# HG changeset patch # User diego # Date 1206984650 0 # Node ID a8a3c0be40c741ee90d2744b2479f399b1c1f32f # Parent ca55b7b133c7ca960602db1587c53afa1411a53a cosmetics: Write some Doxygen comments in a more compact fashion. diff -r ca55b7b133c7 -r a8a3c0be40c7 8svx.c --- a/8svx.c Mon Mar 31 17:16:51 2008 +0000 +++ b/8svx.c Mon Mar 31 17:30:50 2008 +0000 @@ -29,9 +29,7 @@ #include "avcodec.h" -/** - * decoder context - */ +/** decoder context */ typedef struct EightSvxContext { int16_t fib_acc; int16_t *table; @@ -42,9 +40,7 @@ const static int16_t exponential[16] = { -128<<8, -64<<8, -32<<8, -16<<8, -8<<8, -4<<8, -2<<8, -1<<8, 0, 1<<8, 2<<8, 4<<8, 8<<8, 16<<8, 32<<8, 64<<8 }; -/** - * decode a frame - */ +/** decode a frame */ static int eightsvx_decode_frame(AVCodecContext *avctx, void *data, int *data_size, const uint8_t *buf, int buf_size) { @@ -75,9 +71,7 @@ return consumed; } -/** - * initialize 8svx decoder - */ +/** initialize 8svx decoder */ static av_cold int eightsvx_decode_init(AVCodecContext *avctx) { EightSvxContext *esc = avctx->priv_data;