diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-16 08:52:35 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-02-16 23:39:56 +0000 |
commit | 610219a598095f938705f200dfe3946455ef871a (patch) | |
tree | c7fd37b7ad37b19cc678ccdcd88aed202d26a152 /libavformat/output-example.c | |
parent | 2c35a6bde95a382e2d48570255deb67a7633fa46 (diff) | |
download | ffmpeg-610219a598095f938705f200dfe3946455ef871a.tar.gz |
lavf: add av_ prefix to dump_format()
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavformat/output-example.c')
-rw-r--r-- | libavformat/output-example.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/output-example.c b/libavformat/output-example.c index 06207eddfc..edb5c87243 100644 --- a/libavformat/output-example.c +++ b/libavformat/output-example.c @@ -481,7 +481,7 @@ int main(int argc, char **argv) exit(1); } - dump_format(oc, 0, filename, 1); + av_dump_format(oc, 0, filename, 1); /* now that all the parameters are set, we can open the audio and video codecs and allocate the necessary encode buffers */ |