1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-01 08:49:59 +02:00

ffmpeg: use avformat_close_input instead of av_close_input_file

Signed-off-by: Jean First <jeanfirst@gmail.com>
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Jean First 2012-01-03 00:28:05 +01:00 committed by Michael Niedermayer
parent f86c348d46
commit 535705a489

View File

@ -4224,7 +4224,7 @@ static int read_ffserver_streams(OptionsContext *o, AVFormatContext *s, const ch
choose_pixel_fmt(st, codec);
}
av_close_input_file(ic);
avformat_close_input(&ic);
return 0;
}