From 8654d6c892dea41d86a860b82d060df06d815b74 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 7 Aug 2012 22:56:35 +0000 Subject: [PATCH] libtwolame: fix stupid bug Signed-off-by: Paul B Mahol --- libavcodec/libtwolame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/libtwolame.c b/libavcodec/libtwolame.c index 7cdd72ee11..4eb6bdbc2a 100644 --- a/libavcodec/libtwolame.c +++ b/libavcodec/libtwolame.c @@ -176,7 +176,7 @@ static const AVClass libtwolame_class = { AVCodec ff_libtwolame_encoder = { .name = "libtwolame", .type = AVMEDIA_TYPE_AUDIO, - .id = AV_CODEC_ID_MP3, + .id = AV_CODEC_ID_MP2, .priv_data_size = sizeof(TWOLAMEContext), .init = twolame_encode_init, .encode2 = twolame_encode_frame,