Commit 6b8b0fe2 authored by Luca Barbato's avatar Luca Barbato

doxy: remove reference to removed api

parent aac63cef
...@@ -433,15 +433,14 @@ typedef struct AVInputFormat { ...@@ -433,15 +433,14 @@ typedef struct AVInputFormat {
/** /**
* Read the format header and initialize the AVFormatContext * Read the format header and initialize the AVFormatContext
* structure. Return 0 if OK. 'ap' if non-NULL contains * structure. Return 0 if OK. Only used in raw format right
* additional parameters. Only used in raw format right * now. 'avformat_new_stream' should be called to create new streams.
* now. 'av_new_stream' should be called to create new streams.
*/ */
int (*read_header)(struct AVFormatContext *); int (*read_header)(struct AVFormatContext *);
/** /**
* Read one packet and put it in 'pkt'. pts and flags are also * Read one packet and put it in 'pkt'. pts and flags are also
* set. 'av_new_stream' can be called only if the flag * set. 'avformat_new_stream' can be called only if the flag
* AVFMTCTX_NOHEADER is used and only in the calling thread (not in a * AVFMTCTX_NOHEADER is used and only in the calling thread (not in a
* background thread). * background thread).
* @return 0 on success, < 0 on error. * @return 0 on success, < 0 on error.
......
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