summaryrefslogtreecommitdiff
path: root/libavformat/internal.h
diff options
context:
space:
mode:
authorAnssi Hannula <anssi.hannula@iki.fi>2011-02-08 00:46:52 +0200
committerRonald S. Bultje <rsbultje@gmail.com>2011-02-08 18:25:11 -0500
commitaad216fd7e3209fe0a865d8751e680925f6654d3 (patch)
treea8a71a9a17c60957157db0419446d407eb3b36cd /libavformat/internal.h
parent4d016dd4e5b288b3c0c7396935326cb07a289ac2 (diff)
lavf: simplify pb parameter of ff_probe_input_buffer
There is no need to pass the ByteIOContext via a pointer to a pointer anymore. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r--libavformat/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h
index 2482b6d02b..fc4ee216c1 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -97,7 +97,7 @@ uint64_t ff_ntp_time(void);
* @return 0 in case of success, a negative value corresponding to an
* AVERROR code otherwise
*/
-int ff_probe_input_buffer(ByteIOContext **pb, AVInputFormat **fmt,
+int ff_probe_input_buffer(ByteIOContext *pb, AVInputFormat **fmt,
const char *filename, void *logctx,
unsigned int offset, unsigned int max_probe_size);