Browse Source

alac.c : Use av_freep instead of av_free.

Originally committed as revision 21654 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Jai Menon 15 years ago
parent
commit
e243eee43f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/alac.c

+ 2
- 2
libavcodec/alac.c View File

@@ -692,8 +692,8 @@ static av_cold int alac_decode_close(AVCodecContext *avctx)

int chan;
for (chan = 0; chan < MAX_CHANNELS; chan++) {
av_free(alac->predicterror_buffer[chan]);
av_free(alac->outputsamples_buffer[chan]);
av_freep(&alac->predicterror_buffer[chan]);
av_freep(&alac->outputsamples_buffer[chan]);
av_freep(&alac->wasted_bits_buffer[chan]);
}



Loading…
Cancel
Save