~ubuntu-branches/ubuntu/precise/libav/precise-updates

« back to all changes in this revision

Viewing changes to libavcodec/tta.c

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2014-08-10 09:59:10 UTC
  • mfrom: (1.2.22)
  • Revision ID: package-import@ubuntu.com-20140810095910-4rvuwithraqubqvs
Tags: 4:0.8.15-0ubuntu0.12.04.1
* Update to 0.8.15 to fix multiple security issues (LP: #1354755)
* debian/patches/fix_ftbfs_ff_get_buffer.patch: Add more missing
  #includes for ff_get_buffer() to fix ftbfs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
//#define DEBUG
32
32
#include <limits.h>
33
33
#include "avcodec.h"
 
34
#include "internal.h"
34
35
#include "get_bits.h"
35
36
#include "libavutil/crc.h"
36
37
 
343
344
 
344
345
    /* get output buffer */
345
346
    s->frame.nb_samples = framelen;
346
 
    if ((ret = avctx->get_buffer(avctx, &s->frame)) < 0) {
 
347
    if ((ret = ff_get_buffer(avctx, &s->frame)) < 0) {
347
348
        av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
348
349
        return ret;
349
350
    }