]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/h261enc.c
pcm: switch to ff_alloc_packet2().
[ffmpeg] / libavcodec / h261enc.c
index 820677b2d20cbc3c7629ca0cd43cd4bbffde5e84..a2566988ea7db2b7b748b347c48d344c89fc5549 100644 (file)
@@ -321,14 +321,17 @@ static void h261_encode_block(H261Context * h, DCTELEM * block, int n){
     }
 }
 
+FF_MPV_GENERIC_CLASS(h261)
+
 AVCodec ff_h261_encoder = {
     .name           = "h261",
     .type           = AVMEDIA_TYPE_VIDEO,
     .id             = CODEC_ID_H261,
     .priv_data_size = sizeof(H261Context),
     .init           = ff_MPV_encode_init,
-    .encode         = ff_MPV_encode_picture,
+    .encode2        = ff_MPV_encode_picture,
     .close          = ff_MPV_encode_end,
     .pix_fmts= (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
     .long_name= NULL_IF_CONFIG_SMALL("H.261"),
+    .priv_class     = &h261_class,
 };