Browse Source

Remove unused variable, fixes the warning:

libavcodec/atrac3.c:195: warning: unused variable ‘s’

Originally committed as revision 19932 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Diego Biurrun 15 years ago
parent
commit
a79b4b75f7
1 changed files with 0 additions and 1 deletions
  1. +0
    -1
      libavcodec/atrac3.c

+ 0
- 1
libavcodec/atrac3.c View File

@@ -192,7 +192,6 @@ static int decode_bytes(const uint8_t* inbuffer, uint8_t* out, int bytes){


static av_cold void init_atrac3_transforms(ATRAC3Context *q) { static av_cold void init_atrac3_transforms(ATRAC3Context *q) {
float enc_window[256]; float enc_window[256];
float s;
int i; int i;


/* Generate the mdct window, for details see /* Generate the mdct window, for details see


Loading…
Cancel
Save