diff options
author | Anssi Hannula <anssi.hannula@iki.fi> | 2011-02-08 00:46:52 +0200 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-02-08 18:25:11 -0500 |
commit | aad216fd7e3209fe0a865d8751e680925f6654d3 (patch) | |
tree | a8a71a9a17c60957157db0419446d407eb3b36cd /libavformat/internal.h | |
parent | 4d016dd4e5b288b3c0c7396935326cb07a289ac2 (diff) | |
download | ffmpeg-aad216fd7e3209fe0a865d8751e680925f6654d3.tar.gz |
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.h | 2 |
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); |