diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-06-18 19:25:38 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-06-18 19:25:38 +0000 |
commit | 24f9709b2278ee6ed53169f259fb91cdee500035 (patch) | |
tree | 2e47f1f9786e2d4f6515e5c25dad7a1b475e85d8 | |
parent | 9b030d9d73353b4a526ebfcf8828f39020c7a2aa (diff) | |
download | ffmpeg-24f9709b2278ee6ed53169f259fb91cdee500035.tar.gz |
fixed VOB parsing bug
Originally committed as revision 699 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libav/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libav/utils.c b/libav/utils.c index a314ec4e27..6311495e5d 100644 --- a/libav/utils.c +++ b/libav/utils.c @@ -659,8 +659,8 @@ int av_find_stream_info(AVFormatContext *ic) close_codec: st->codec_info_state = CSTATE_FOUND; avcodec_close(&st->codec); + break; } - break; } ptr += ret; size -= ret; |