diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-10 10:22:24 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-11 00:01:27 +0200 |
commit | b50217f6f7fa9c44f7f130661b3afd415a39200d (patch) | |
tree | 38ad6a65d04d04a070ef84d57e2742c894cb9b01 /libavcodec/8svx.c | |
parent | 48dce86065484fa51c728e8ebdac7afaf03135be (diff) | |
download | ffmpeg-b50217f6f7fa9c44f7f130661b3afd415a39200d.tar.gz |
8svx: remove pointless comments
Diffstat (limited to 'libavcodec/8svx.c')
-rw-r--r-- | libavcodec/8svx.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/8svx.c b/libavcodec/8svx.c index 9d6babf127..4f95d9034e 100644 --- a/libavcodec/8svx.c +++ b/libavcodec/8svx.c @@ -47,7 +47,6 @@ static const int16_t fibonacci[16] = { -34<<8, -21<<8, -13<<8, -8<<8, -5<<8, static const 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 */ static int eightsvx_decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) { @@ -80,7 +79,6 @@ static int eightsvx_decode_frame(AVCodecContext *avctx, void *data, int *data_si return consumed; } -/** initialize 8svx decoder */ static av_cold int eightsvx_decode_init(AVCodecContext *avctx) { EightSvxContext *esc = avctx->priv_data; |