Browse Source

Remove deprecated avcodec_decode_audio() this one was not under #ifdef.

Originally committed as revision 15272 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 17 years ago
parent
commit
475e4e2ffc
1 changed files with 0 additions and 7 deletions
  1. +0
    -7
      libavcodec/avcodec.h

+ 0
- 7
libavcodec/avcodec.h View File

@@ -2618,13 +2618,6 @@ int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, v
*/ */
int avcodec_open(AVCodecContext *avctx, AVCodec *codec); int avcodec_open(AVCodecContext *avctx, AVCodec *codec);


/**
* @deprecated Use avcodec_decode_audio2() instead.
*/
attribute_deprecated int avcodec_decode_audio(AVCodecContext *avctx, int16_t *samples,
int *frame_size_ptr,
const uint8_t *buf, int buf_size);

/** /**
* Decodes an audio frame from \p buf into \p samples. * Decodes an audio frame from \p buf into \p samples.
* The avcodec_decode_audio2() function decodes an audio frame from the input * The avcodec_decode_audio2() function decodes an audio frame from the input


Loading…
Cancel
Save