pgm, pgmyuv, ppm, pbm and pam decoders use get_buffer, set CODEC_CAP_DR1
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>
Fri, 5 Jun 2009 08:29:05 +0000 (08:29 +0000)
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>
Fri, 5 Jun 2009 08:29:05 +0000 (08:29 +0000)
Originally committed as revision 19097 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/pnmenc.c

index 2619d90..c60e4da 100644 (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"),
 };