diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-09-08 22:04:29 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-09-08 22:04:29 +0000 |
commit | 80783dc2c2c611750cf2ff9d3027f283f8a2dc5b (patch) | |
tree | 973a4a733012a8daebc69cbf7b883db59d0e5809 /libavformat/raw.c | |
parent | dcedf5867207ea21c5e492434e6466d1aac79de3 (diff) | |
download | ffmpeg-80783dc2c2c611750cf2ff9d3027f283f8a2dc5b.tar.gz |
CODEC_ID_MP3LAME is obsolete
Originally committed as revision 2232 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/raw.c')
-rw-r--r-- | libavformat/raw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/raw.c b/libavformat/raw.c index 2354ad15cf..141d327358 100644 --- a/libavformat/raw.c +++ b/libavformat/raw.c @@ -129,7 +129,7 @@ static int mp3_read_header(AVFormatContext *s, break; if( pos < s->pb.buffer_size-1 && (s->pb.buffer[pos+1] & 6) == 2 ) - st->codec.codec_id = CODEC_ID_MP3LAME; + st->codec.codec_id = CODEC_ID_MP3; /* the parameters will be extracted from the compressed bitstream */ return 0; @@ -259,7 +259,7 @@ AVOutputFormat mp3_oformat = { "audio/x-mpeg", "mp3", 0, - CODEC_ID_MP3LAME, + CODEC_ID_MP3, 0, raw_write_header, raw_write_packet, |