~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavcodec/v408enc.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:
26
26
 
27
27
static av_cold int v408_encode_init(AVCodecContext *avctx)
28
28
{
29
 
    avctx->coded_frame = avcodec_alloc_frame();
 
29
    avctx->coded_frame = av_frame_alloc();
30
30
 
31
31
    if (!avctx->coded_frame) {
32
32
        av_log(avctx, AV_LOG_ERROR, "Could not allocate frame.\n");