Remove hack to print mp2/mp1 with codec_id of CODEC_ID_MP3.
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 13 Jan 2009 19:38:54 +0000 (19:38 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 13 Jan 2009 19:38:54 +0000 (19:38 +0000)
Originally committed as revision 16583 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/utils.c

index b622d1a..0d2d657 100644 (file)
@@ -646,12 +646,6 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
 
     if (p) {
         codec_name = p->name;
-        if (!encode && enc->codec_id == CODEC_ID_MP3) {
-            if (enc->sub_id == 2)
-                codec_name = "mp2";
-            else if (enc->sub_id == 1)
-                codec_name = "mp1";
-        }
     } else if (enc->codec_id == CODEC_ID_MPEG2TS) {
         /* fake mpeg2 transport stream codec (currently not
            registered) */