comparison flvdec.c @ 232:eb90c0a5a1ba libavformat

CODEC_ID_MP3LAME is obsolete
author bellard
date Mon, 08 Sep 2003 22:04:29 +0000
parents 99fbacf0f764
children 845f9de2c883
comparison
equal deleted inserted replaced
231:8ca8b6bc24a5 232:eb90c0a5a1ba
62 if ((flags & 4)) { 62 if ((flags & 4)) {
63 st = av_new_stream(s, 1); 63 st = av_new_stream(s, 1);
64 if (!st) 64 if (!st)
65 return AVERROR_NOMEM; 65 return AVERROR_NOMEM;
66 st->codec.codec_type = CODEC_TYPE_AUDIO; 66 st->codec.codec_type = CODEC_TYPE_AUDIO;
67 st->codec.codec_id = CODEC_ID_MP3LAME; 67 st->codec.codec_id = CODEC_ID_MP3;
68 } 68 }
69 69
70 offset = get_be32(&s->pb); 70 offset = get_be32(&s->pb);
71 url_fseek(&s->pb, offset, SEEK_SET); 71 url_fseek(&s->pb, offset, SEEK_SET);
72 72