diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-04-04 01:10:50 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-04-04 01:10:50 +0000 |
commit | 8bfed902f30f2c1c2c7e3e6f85bb44c42127dea3 (patch) | |
tree | 082fecd4120bb26a480239ba977541418faf5099 /libavformat/utils.c | |
parent | a5247e3d8de5d7a7210c2e951356c1f0b1995aad (diff) | |
download | ffmpeg-8bfed902f30f2c1c2c7e3e6f85bb44c42127dea3.tar.gz |
remove spyware from ogg*.c
fix vorbis in ogg decoding
Originally committed as revision 2952 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 1f07ac1ebe..c170c03577 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1476,6 +1476,7 @@ int av_find_stream_info(AVFormatContext *ic) (st->codec.codec_id == CODEC_ID_FLV1 || st->codec.codec_id == CODEC_ID_H264 || st->codec.codec_id == CODEC_ID_H263 || + st->codec.codec_id == CODEC_ID_VORBIS || (st->codec.codec_id == CODEC_ID_MPEG4 && !st->need_parsing))) try_decode_frame(st, pkt->data, pkt->size); @@ -1864,7 +1865,7 @@ int parse_frame_rate(int *frame_rate, int *frame_rate_base, const char *arg) } else { /* Finally we give up and parse it as double */ - *frame_rate_base = DEFAULT_FRAME_RATE_BASE; + *frame_rate_base = DEFAULT_FRAME_RATE_BASE; //FIXME use av_d2q() *frame_rate = (int)(strtod(arg, 0) * (*frame_rate_base) + 0.5); } if (!*frame_rate || !*frame_rate_base) |