diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-03-10 11:48:33 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-03-10 11:48:33 +0000 |
commit | a77146abfe33ab22a2b69721c9f74fa693f1ceed (patch) | |
tree | 2930164ab6fe1c3d014ccf400db1d5ac5d6e0e8e /libavcodec/common.h | |
parent | 161fe66e365af1aeedb2a88d18d46fa91c5e606d (diff) | |
download | ffmpeg-a77146abfe33ab22a2b69721c9f74fa693f1ceed.tar.gz |
* 'externaly' visible option list begins avoptions_ prefix
* fixed FLAG AVOption
Originally committed as revision 1661 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/common.h')
-rw-r--r-- | libavcodec/common.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/common.h b/libavcodec/common.h index a1be71b759..258302661a 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -57,6 +57,14 @@ #define AVOPTION_SUB(ptr) { .name = NULL, .help = (const char*)ptr } #define AVOPTION_END() AVOPTION_SUB(NULL) +struct AVOption; +#ifdef HAVE_MMX +extern const struct AVOption avoptions_common[3 + 5]; +#else +extern const struct AVOption avoptions_common[3]; +#endif +extern const struct AVOption avoptions_workaround_bug[11]; + #endif /* HAVE_AV_CONFIG_H */ /* Suppress restrict if it was not defined in config.h. */ |