mirror of https://git.ffmpeg.org/ffmpeg.git
fixed VOB parsing bug
Originally committed as revision 699 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9b030d9d73
commit
24f9709b22
|
@ -659,9 +659,9 @@ int av_find_stream_info(AVFormatContext *ic)
|
||||||
close_codec:
|
close_codec:
|
||||||
st->codec_info_state = CSTATE_FOUND;
|
st->codec_info_state = CSTATE_FOUND;
|
||||||
avcodec_close(&st->codec);
|
avcodec_close(&st->codec);
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
ptr += ret;
|
ptr += ret;
|
||||||
size -= ret;
|
size -= ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue