~ubuntu-branches/ubuntu/precise/vlc/precise-proposed

« back to all changes in this revision

Viewing changes to modules/codec/avcodec/video.c

  • Committer: Package Import Robot
  • Author(s): Benjamin Drung
  • Date: 2011-12-31 13:42:26 UTC
  • mfrom: (3.5.31 sid)
  • Revision ID: package-import@ubuntu.com-20111231134226-nwo5aheq7d03wooa
* New upstream release (Closes: #604687).
* Drop backported patches and patches that were accepted by upstream.
* Refresh remaining patches.
* Add mailcap entry for Ogg Video (Closes: #651662).

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * video.c: video decoder using the ffmpeg library
3
3
 *****************************************************************************
4
4
 * Copyright (C) 1999-2001 the VideoLAN team
5
 
 * $Id: d0b90c9bb85f625528513a218d1f8f941bde51a4 $
 
5
 * $Id: e34e25c2bc251b061148346d3e702cf0bc1b4ca0 $
6
6
 *
7
7
 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8
8
 *          Gildas Bazin <gbazin@videolan.org>
299
299
    if( var_CreateGetBool( p_dec, "ffmpeg-dr" ) &&
300
300
       (p_sys->p_codec->capabilities & CODEC_CAP_DR1) &&
301
301
        /* No idea why ... but this fixes flickering on some TSCC streams */
302
 
        p_sys->i_codec_id != CODEC_ID_TSCC &&
 
302
        p_sys->i_codec_id != CODEC_ID_TSCC && p_sys->i_codec_id != CODEC_ID_CSCD &&
303
303
#if (LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 68, 2 ) ) && (LIBAVCODEC_VERSION_INT < AV_VERSION_INT( 52, 100, 1 ) )
304
304
        /* avcodec native vp8 decode doesn't handle EMU_EDGE flag, and I
305
305
           don't have idea howto implement fallback to libvpx decoder */