Commit ece2f1eb authored by aurel's avatar aurel

remove useless duplication of what av_new_stream() already does

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18416 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6d4cfb5e
...@@ -287,7 +287,6 @@ static int ffm_read_header(AVFormatContext *s, AVFormatParameters *ap) ...@@ -287,7 +287,6 @@ static int ffm_read_header(AVFormatContext *s, AVFormatParameters *ap)
st = av_new_stream(s, 0); st = av_new_stream(s, 0);
if (!st) if (!st)
goto fail; goto fail;
s->streams[i] = st;
av_set_pts_info(st, 64, 1, 1000000); av_set_pts_info(st, 64, 1, 1000000);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment