~ubuntu-branches/ubuntu/utopic/libav/utopic

« back to all changes in this revision

Viewing changes to libavcodec/mlpdec.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-12-21 15:32:13 UTC
  • mto: (1.2.18)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: package-import@ubuntu.com-20121221153213-fudzrugjzivtv0wp
Tags: upstream-9~beta3
ImportĀ upstreamĀ versionĀ 9~beta3

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
#include "avcodec.h"
30
30
#include "libavutil/intreadwrite.h"
31
31
#include "get_bits.h"
 
32
#include "internal.h"
32
33
#include "libavutil/crc.h"
33
34
#include "parser.h"
34
35
#include "mlp_parser.h"
920
921
 
921
922
    /* get output buffer */
922
923
    m->frame.nb_samples = s->blockpos;
923
 
    if ((ret = avctx->get_buffer(avctx, &m->frame)) < 0) {
 
924
    if ((ret = ff_get_buffer(avctx, &m->frame)) < 0) {
924
925
        av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
925
926
        return ret;
926
927
    }