~ubuntu-branches/debian/sid/ffmpeg/sid

« back to all changes in this revision

Viewing changes to libavfilter/vf_mcdeint.c

  • Committer: Package Import Robot
  • Author(s): Andreas Cadhalpun, Fabian Greffrath, Andreas Cadhalpun
  • Date: 2015-09-22 15:15:20 UTC
  • mfrom: (0.1.29)
  • Revision ID: package-import@ubuntu.com-20150922151520-hhmd3in9ykigjvs9
Tags: 7:2.8-1
[ Fabian Greffrath ]
* Pass the --dbg-package=ffmpeg-dbg parameter only to dh_strip.
* Add alternative Depends: libavcodec-ffmpeg-extra56 to libavcodec-dev and
  ffmpeg-dbg to allow for building and debugging with this library installed.

[ Andreas Cadhalpun ]
* Import new major upstream release 2.8.
* Remove the transitional lib*-ffmpeg-dev packages.
* Drop old Breaks on kodi-bin.
* Drop workaround for sparc, which is no Debian architecture anymore.
* Re-enable x265 on alpha, as it's available again.
* Disable unavailable frei0r, opencv and x264 on mips64el.
* Disable libopenjpeg (#787275) and libschroedinger (#787957) decoders.
  (Closes: #786670)
* Disable libdc1394 on sparc64, because it links against the broken due to
  #790560 libudev1.
* Enable libsnappy support.
* Add new symbols.
* Update debian/copyright.
* Update debian/tests/encdec_list.txt.
* Add hls-only-seek-if-there-is-an-offset.patch. (Closes: #798189)
* Add 'Breaks: libavutil-ffmpeg54 (>= 8:0)' to the libraries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
    enc_ctx->gop_size = INT_MAX;
121
121
    enc_ctx->max_b_frames = 0;
122
122
    enc_ctx->pix_fmt = AV_PIX_FMT_YUV420P;
123
 
    enc_ctx->flags = CODEC_FLAG_QSCALE | CODEC_FLAG_LOW_DELAY;
 
123
    enc_ctx->flags = AV_CODEC_FLAG_QSCALE | CODEC_FLAG_LOW_DELAY;
124
124
    enc_ctx->strict_std_compliance = FF_COMPLIANCE_EXPERIMENTAL;
125
125
    enc_ctx->global_quality = 1;
126
126
    enc_ctx->me_cmp = enc_ctx->me_sub_cmp = FF_CMP_SAD;
134
134
    case MODE_SLOW:
135
135
        enc_ctx->me_method = ME_ITER;
136
136
    case MODE_MEDIUM:
137
 
        enc_ctx->flags |= CODEC_FLAG_4MV;
 
137
        enc_ctx->flags |= AV_CODEC_FLAG_4MV;
138
138
        enc_ctx->dia_size = 2;
139
139
    case MODE_FAST:
140
 
        enc_ctx->flags |= CODEC_FLAG_QPEL;
 
140
        enc_ctx->flags |= AV_CODEC_FLAG_QPEL;
141
141
    }
142
142
 
143
143
    ret = avcodec_open2(enc_ctx, enc, &opts);