summaryrefslogtreecommitdiff
path: root/libavcodec/opt.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2005-09-11 23:19:57 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-09-11 23:19:57 +0000
commita1689e2f19957c45b6f2b2fc0063b304826a8887 (patch)
tree2c8f041d185284db79a34f509a3c98c4f400b16e /libavcodec/opt.h
parentb4abfb306084e204a1c79f468dbb3b0880914342 (diff)
avoid stdio.h
Originally committed as revision 4585 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/opt.h')
-rw-r--r--libavcodec/opt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/opt.h b/libavcodec/opt.h
index 7b2fe47c66..c84db00fed 100644
--- a/libavcodec/opt.h
+++ b/libavcodec/opt.h
@@ -56,6 +56,6 @@ AVRational av_get_q(void *obj, const char *name, AVOption **o_out);
int64_t av_get_int(void *obj, const char *name, AVOption **o_out);
const char *av_get_string(void *obj, const char *name, AVOption **o_out, char *buf, int buf_len);
AVOption *av_next_option(void *obj, AVOption *last);
-int av_opt_show(void *obj, FILE *f);
+int av_opt_show(void *obj, void *av_log_obj);
#endif