diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-02-10 10:30:05 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-02-19 08:26:30 +0100 |
commit | 445a7d48b13c8c6607b69156233fc8d5fed3b396 (patch) | |
tree | 26eabe049019664b187277a293ac26d25416391b /libavcodec/h261enc.c | |
parent | 5455384219d873d0d2ddaeb7098da659f4207058 (diff) | |
download | ffmpeg-445a7d48b13c8c6607b69156233fc8d5fed3b396.tar.gz |
mpegvideo_enc: switch to encode2().
Diffstat (limited to 'libavcodec/h261enc.c')
-rw-r--r-- | libavcodec/h261enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h261enc.c b/libavcodec/h261enc.c index d33c72423c..0ae48ca092 100644 --- a/libavcodec/h261enc.c +++ b/libavcodec/h261enc.c @@ -327,7 +327,7 @@ AVCodec ff_h261_encoder = { .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"), |