projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4cbed91
)
fix mp3 in swf decoding
author
Aurelien Jacobs
<aurel@gnuage.org>
Wed, 25 Oct 2006 20:05:14 +0000
(20:05 +0000)
committer
Aurelien Jacobs
<aurel@gnuage.org>
Wed, 25 Oct 2006 20:05:14 +0000
(20:05 +0000)
Originally committed as revision 6792 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavformat/swf.c
patch
|
blob
|
history
diff --git
a/libavformat/swf.c
b/libavformat/swf.c
index
848ca17
..
bc3b2f9
100644
(file)
--- a/
libavformat/swf.c
+++ b/
libavformat/swf.c
@@
-854,6
+854,7
@@
static int swf_read_header(AVFormatContext *s, AVFormatParameters *ap)
}
ast->codec->codec_type = CODEC_TYPE_AUDIO;
ast->codec->codec_id = CODEC_ID_MP3;
+ ast->need_parsing = 1;
}
} else {
url_fskip(pb, len);
@@
-896,7
+897,8
@@
static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
for( i=0; i<s->nb_streams; i++ ) {
st = s->streams[i];
if (st->id == 1) {
- av_get_packet(pb, pkt, len);
+ url_fskip(pb, 4);
+ av_get_packet(pb, pkt, len-4);
pkt->stream_index = st->index;
return pkt->size;
}