[FFmpeg-cvslog] swfdec: Add support for sample_rate_code 0 (5512 Hz)
Alex Converse
git at videolan.org
Wed Sep 21 21:34:06 CEST 2011
ffmpeg | branch: master | Alex Converse <alex.converse at gmail.com> | Tue Sep 20 18:40:43 2011 -0700| [05fc9e40a4e4f808d457512420b887f458d216bc] | committer: Alex Converse
swfdec: Add support for sample_rate_code 0 (5512 Hz)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=05fc9e40a4e4f808d457512420b887f458d216bc
---
libavformat/swfdec.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/libavformat/swfdec.c b/libavformat/swfdec.c
index 59977a9..502647f 100644
--- a/libavformat/swfdec.c
+++ b/libavformat/swfdec.c
@@ -136,8 +136,9 @@ static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
ast->need_parsing = AVSTREAM_PARSE_FULL;
sample_rate_code= (v>>2) & 3;
if (!sample_rate_code)
- return AVERROR(EIO);
- ast->codec->sample_rate = 11025 << (sample_rate_code-1);
+ ast->codec->sample_rate = 5512;
+ else
+ ast->codec->sample_rate = 11025 << (sample_rate_code-1);
av_set_pts_info(ast, 64, 1, ast->codec->sample_rate);
len -= 4;
} else if (tag == TAG_VIDEOFRAME) {
More information about the ffmpeg-cvslog
mailing list