~ubuntu-branches/ubuntu/quantal/mplayer2/quantal-proposed

« back to all changes in this revision

Viewing changes to ffmpeg-mt/libavcodec/pnmdec.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2011-04-21 09:21:39 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110421092139-7a21foqroxvir3wr
Tags: 2.0-54-gd33877a-1
* New upstream version
* Bug fix: "internal MP3 decoder miscompiles with gcc 4.6", thanks to
  Norbert Preining (Closes: #623279). Fixed by no longer using internal
  mp3lib copy.
* drop build host specific optimizations

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * PNM image format
3
3
 * Copyright (c) 2002, 2003 Fabrice Bellard
4
4
 *
5
 
 * This file is part of FFmpeg.
 
5
 * This file is part of Libav.
6
6
 *
7
 
 * FFmpeg is free software; you can redistribute it and/or
 
7
 * Libav is free software; you can redistribute it and/or
8
8
 * modify it under the terms of the GNU Lesser General Public
9
9
 * License as published by the Free Software Foundation; either
10
10
 * version 2.1 of the License, or (at your option) any later version.
11
11
 *
12
 
 * FFmpeg is distributed in the hope that it will be useful,
 
12
 * Libav is distributed in the hope that it will be useful,
13
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
15
 * Lesser General Public License for more details.
16
16
 *
17
17
 * You should have received a copy of the GNU Lesser General Public
18
 
 * License along with FFmpeg; if not, write to the Free Software
 
18
 * License along with Libav; if not, write to the Free Software
19
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
20
 */
21
21
 
188
188
 
189
189
 
190
190
#if CONFIG_PGM_DECODER
191
 
AVCodec pgm_decoder = {
 
191
AVCodec ff_pgm_decoder = {
192
192
    "pgm",
193
193
    AVMEDIA_TYPE_VIDEO,
194
194
    CODEC_ID_PGM,
205
205
#endif
206
206
 
207
207
#if CONFIG_PGMYUV_DECODER
208
 
AVCodec pgmyuv_decoder = {
 
208
AVCodec ff_pgmyuv_decoder = {
209
209
    "pgmyuv",
210
210
    AVMEDIA_TYPE_VIDEO,
211
211
    CODEC_ID_PGMYUV,
222
222
#endif
223
223
 
224
224
#if CONFIG_PPM_DECODER
225
 
AVCodec ppm_decoder = {
 
225
AVCodec ff_ppm_decoder = {
226
226
    "ppm",
227
227
    AVMEDIA_TYPE_VIDEO,
228
228
    CODEC_ID_PPM,
239
239
#endif
240
240
 
241
241
#if CONFIG_PBM_DECODER
242
 
AVCodec pbm_decoder = {
 
242
AVCodec ff_pbm_decoder = {
243
243
    "pbm",
244
244
    AVMEDIA_TYPE_VIDEO,
245
245
    CODEC_ID_PBM,
256
256
#endif
257
257
 
258
258
#if CONFIG_PAM_DECODER
259
 
AVCodec pam_decoder = {
 
259
AVCodec ff_pam_decoder = {
260
260
    "pam",
261
261
    AVMEDIA_TYPE_VIDEO,
262
262
    CODEC_ID_PAM,