pgm, pgmyuv, ppm, pbm and pam decoders use get_buffer, set CODEC_CAP_DR1

Originally committed as revision 19097 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2009-06-05 08:29:05 +00:00
parent 0cf0c5bfa8
commit 5f27348bd3
1 changed files with 5 additions and 0 deletions

View File

@ -373,6 +373,7 @@ AVCodec pgm_decoder = {
NULL,
NULL,
pnm_decode_frame,
CODEC_CAP_DR1,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_GRAY8, PIX_FMT_GRAY16BE, PIX_FMT_NONE},
.long_name= NULL_IF_CONFIG_SMALL("PGM (Portable GrayMap) image"),
};
@ -401,6 +402,7 @@ AVCodec pgmyuv_decoder = {
NULL,
NULL,
pnm_decode_frame,
CODEC_CAP_DR1,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
.long_name= NULL_IF_CONFIG_SMALL("PGMYUV (Portable GrayMap YUV) image"),
};
@ -429,6 +431,7 @@ AVCodec ppm_decoder = {
NULL,
NULL,
pnm_decode_frame,
CODEC_CAP_DR1,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_RGB24, PIX_FMT_RGB48BE, PIX_FMT_NONE},
.long_name= NULL_IF_CONFIG_SMALL("PPM (Portable PixelMap) image"),
};
@ -457,6 +460,7 @@ AVCodec pbm_decoder = {
NULL,
NULL,
pnm_decode_frame,
CODEC_CAP_DR1,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_MONOWHITE, PIX_FMT_NONE},
.long_name= NULL_IF_CONFIG_SMALL("PBM (Portable BitMap) image"),
};
@ -485,6 +489,7 @@ AVCodec pam_decoder = {
NULL,
NULL,
pnm_decode_frame,
CODEC_CAP_DR1,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_RGB24, PIX_FMT_RGB32, PIX_FMT_GRAY8, PIX_FMT_MONOWHITE, PIX_FMT_NONE},
.long_name= NULL_IF_CONFIG_SMALL("PAM (Portable AnyMap) image"),
};