diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2006-09-10 20:21:40 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-09-10 20:21:40 +0000 |
commit | 73a8ceaa17e364dd5bb800de1492a4f2368da644 (patch) | |
tree | ad7cef8b5abd12ed7578a623ac9fd1f2db2c6043 /libavcodec/opt.h | |
parent | b7cff9ce7c4beb181daa0284ad3ad8fd575e4c8d (diff) | |
download | ffmpeg-73a8ceaa17e364dd5bb800de1492a4f2368da644.tar.gz |
make AVOptions default value field work.
Patch by Panagiotis Issaris % takis P issaris A uhasselt P be %
Original thread:
Date: Sep 8, 2006 3:22 PM
Subject: [Ffmpeg-devel] [PATCH 1/2] Enable usage of AVOption default value
Originally committed as revision 6224 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/opt.h')
-rw-r--r-- | libavcodec/opt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/opt.h b/libavcodec/opt.h index 92a4535ecf..e7be7b54f4 100644 --- a/libavcodec/opt.h +++ b/libavcodec/opt.h @@ -76,5 +76,6 @@ 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, void *av_log_obj); +void av_opt_set_defaults(void *s); #endif |