~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavfilter/lavfutils.c

  • Committer: Henrik Rydgård
  • Date: 2014-01-03 10:44:32 UTC
  • Revision ID: git-v1:87c6c126784b1718bfa448ecf2e6a9fef781eb4e
Update our ffmpeg snapshot to a clone of the official repository.

This is because Maxim's at3plus support has been officially merged!

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
        goto end;
58
58
    }
59
59
 
60
 
    if (!(frame = avcodec_alloc_frame()) ) {
 
60
    if (!(frame = av_frame_alloc()) ) {
61
61
        av_log(log_ctx, AV_LOG_ERROR, "Failed to alloc frame\n");
62
62
        ret = AVERROR(ENOMEM);
63
63
        goto end;