~ubuntu-branches/ubuntu/raring/libav/raring-security

« back to all changes in this revision

Viewing changes to libavcodec/pnmdec.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2011-09-28 09:18:34 UTC
  • mfrom: (1.3.7 sid)
  • Revision ID: package-import@ubuntu.com-20110928091834-w415mnuh06h4zpvc
Tags: 4:0.7.1-7ubuntu2
Revert "Convert package to include multiarch support."

Show diffs side-by-side

added added

removed removed

Lines of Context:
199
199
    pnm_decode_frame,
200
200
    CODEC_CAP_DR1,
201
201
    .pix_fmts  = (const enum PixelFormat[]){PIX_FMT_GRAY8, PIX_FMT_GRAY16BE, PIX_FMT_NONE},
202
 
    .max_lowres = 5,
203
202
    .long_name = NULL_IF_CONFIG_SMALL("PGM (Portable GrayMap) image"),
204
203
};
205
204
#endif
216
215
    pnm_decode_frame,
217
216
    CODEC_CAP_DR1,
218
217
    .pix_fmts  = (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
219
 
    .max_lowres = 5,
220
218
    .long_name = NULL_IF_CONFIG_SMALL("PGMYUV (Portable GrayMap YUV) image"),
221
219
};
222
220
#endif
233
231
    pnm_decode_frame,
234
232
    CODEC_CAP_DR1,
235
233
    .pix_fmts  = (const enum PixelFormat[]){PIX_FMT_RGB24, PIX_FMT_RGB48BE, PIX_FMT_NONE},
236
 
    .max_lowres = 5,
237
234
    .long_name = NULL_IF_CONFIG_SMALL("PPM (Portable PixelMap) image"),
238
235
};
239
236
#endif
250
247
    pnm_decode_frame,
251
248
    CODEC_CAP_DR1,
252
249
    .pix_fmts  = (const enum PixelFormat[]){PIX_FMT_MONOWHITE, PIX_FMT_NONE},
253
 
    .max_lowres = 5,
254
250
    .long_name = NULL_IF_CONFIG_SMALL("PBM (Portable BitMap) image"),
255
251
};
256
252
#endif
267
263
    pnm_decode_frame,
268
264
    CODEC_CAP_DR1,
269
265
    .pix_fmts  = (const enum PixelFormat[]){PIX_FMT_RGB24, PIX_FMT_RGB32, PIX_FMT_GRAY8, PIX_FMT_MONOWHITE, PIX_FMT_NONE},
270
 
    .max_lowres = 5,
271
266
    .long_name = NULL_IF_CONFIG_SMALL("PAM (Portable AnyMap) image"),
272
267
};
273
268
#endif