~ubuntu-branches/debian/experimental/libav/experimental

« back to all changes in this revision

Viewing changes to libavcodec/mpeg4videoenc.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-08-17 22:33:40 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20140817223340-net3rzywma60pzhz
Tags: 6:11~beta1-1
* New upstream Release v11~alpha2
* build against libgnutls28-dev (Closes: #758447)
* Bump shlibs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1287
1287
    int ret;
1288
1288
    static int done = 0;
1289
1289
 
1290
 
    if ((ret = ff_MPV_encode_init(avctx)) < 0)
 
1290
    if ((ret = ff_mpv_encode_init(avctx)) < 0)
1291
1291
        return ret;
1292
1292
 
1293
1293
    if (!done) {
1401
1401
    .id             = AV_CODEC_ID_MPEG4,
1402
1402
    .priv_data_size = sizeof(MpegEncContext),
1403
1403
    .init           = encode_init,
1404
 
    .encode2        = ff_MPV_encode_picture,
1405
 
    .close          = ff_MPV_encode_end,
 
1404
    .encode2        = ff_mpv_encode_picture,
 
1405
    .close          = ff_mpv_encode_end,
1406
1406
    .pix_fmts       = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE },
1407
1407
    .capabilities   = CODEC_CAP_DELAY | CODEC_CAP_SLICE_THREADS,
1408
1408
    .priv_class     = &mpeg4enc_class,