diff options
author | Anssi Hannula <anssi.hannula@iki.fi> | 2011-02-08 00:46:52 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-09 03:33:55 +0100 |
commit | e74c01db7e2627f36e8829b9fc13fdd8aade5f0f (patch) | |
tree | 114a1e46c836653bf04e15da974c51a46e90001f /libavformat/internal.h | |
parent | 2e47df70c403ff561050e61bffb4df6837103355 (diff) | |
download | ffmpeg-e74c01db7e2627f36e8829b9fc13fdd8aade5f0f.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>
(cherry picked from commit aad216fd7e3209fe0a865d8751e680925f6654d3)
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); |