~ubuntu-branches/debian/squeeze/vlc/squeeze

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Mutricy
  • Date: 2009-09-20 01:08:41 UTC
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20090920010841-vc6vme91a70r5w0t
Tags: upstream-1.0.2
ImportĀ upstreamĀ versionĀ 1.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * audio.c: audio decoder using ffmpeg library
3
3
 *****************************************************************************
4
4
 * Copyright (C) 1999-2003 the VideoLAN team
5
 
 * $Id: 90c5e7eab59a32678c488cfa46f2628547e4930c $
 
5
 * $Id: ae640e3fc29e32efeade8fd8c26ddf3fe6c615d3 $
6
6
 *
7
7
 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8
8
 *          Gildas Bazin <gbazin@videolan.org>
195
195
    case CODEC_ID_FLAC:
196
196
        p_sys->i_output_max = 8 * sizeof(int32_t) * 65535;
197
197
        break;
 
198
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 35, 0 )
 
199
    case CODEC_ID_WMAPRO:
 
200
        p_sys->i_output_max = 8 * sizeof(float) * 6144; /* (1 << 12) * 3/2 */
 
201
        break;
 
202
#endif
198
203
    default:
199
204
        p_sys->i_output_max = 0;
200
205
        break;