summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2012-02-19 10:35:45 +0100
committerLuca Barbato <lu_zero@gentoo.org>2012-02-19 19:10:28 +0100
commit6b8b0fe2bc57fdd606074e52ba73cd9b3d95e644 (patch)
treeffb375c84d01998cecb2c291fb31a44d797becae
parentaac63cef209877df62d3631e4d04187b94574136 (diff)
doxy: remove reference to removed api
-rw-r--r--libavformat/avformat.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 7b67889e73..58565fb59a 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -433,15 +433,14 @@ typedef struct AVInputFormat {
/**
* Read the format header and initialize the AVFormatContext
- * structure. Return 0 if OK. 'ap' if non-NULL contains
- * additional parameters. Only used in raw format right
- * now. 'av_new_stream' should be called to create new streams.
+ * structure. Return 0 if OK. Only used in raw format right
+ * now. 'avformat_new_stream' should be called to create new streams.
*/
int (*read_header)(struct AVFormatContext *);
/**
* 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
* background thread).
* @return 0 on success, < 0 on error.