diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-08-20 12:23:24 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-08-20 13:33:47 +0200 |
commit | 64af59bc4916fac5578b31c89da13c30b591bddf (patch) | |
tree | e49fbd99b6b6ce98eb5fc86f99e66a67aec76266 /libavformat | |
parent | 67400f6b6219892ab7a555fb61ef979c857692d7 (diff) | |
download | ffmpeg-64af59bc4916fac5578b31c89da13c30b591bddf.tar.gz |
avformat: Fix references to removed av_close_input_file in Doxygen
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/avformat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 5d224c4899..1399de052b 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -1212,7 +1212,7 @@ int av_probe_input_buffer(AVIOContext *pb, AVInputFormat **fmt, /** * Open an input stream and read the header. The codecs are not opened. - * The stream must be closed with av_close_input_file(). + * The stream must be closed with avformat_close_input(). * * @param ps Pointer to user-supplied AVFormatContext (allocated by avformat_alloc_context). * May be a pointer to NULL, in which case an AVFormatContext is allocated by this @@ -1294,8 +1294,8 @@ int av_find_best_stream(AVFormatContext *ic, * information possible for decoding. * * If pkt->buf is NULL, then the packet is valid until the next - * av_read_frame() or until av_close_input_file(). Otherwise the packet is valid - * indefinitely. In both cases the packet must be freed with + * av_read_frame() or until avformat_close_input(). Otherwise the packet + * is valid indefinitely. In both cases the packet must be freed with * av_free_packet when it is no longer needed. For video, the packet contains * exactly one frame. For audio, it contains an integer number of frames if each * frame has a known fixed size (e.g. PCM or ADPCM data). If the audio frames |