diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2010-08-18 20:34:31 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2010-08-18 20:34:31 +0000 |
commit | 54036be11a0f1902144fbf903a98607ae52ff5fb (patch) | |
tree | f495099eda8df86161600d044dd33213ecda83eb /libavformat/options.c | |
parent | a42c29febc501d5df3dd24b437cb884485862c56 (diff) | |
download | ffmpeg-54036be11a0f1902144fbf903a98607ae52ff5fb.tar.gz |
rename LAVF_API_* defines to FF_API_* to clarify that it is not public API
Originally committed as revision 24825 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/options.c')
-rw-r--r-- | libavformat/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/options.c b/libavformat/options.c index acfb4226d6..28a49cb1da 100644 --- a/libavformat/options.c +++ b/libavformat/options.c @@ -50,7 +50,7 @@ static const AVOption options[]={ {"noparse", "disable AVParsers, this needs nofillin too", 0, FF_OPT_TYPE_CONST, AVFMT_FLAG_NOPARSE, INT_MIN, INT_MAX, D, "fflags"}, {"igndts", "ignore dts", 0, FF_OPT_TYPE_CONST, AVFMT_FLAG_IGNDTS, INT_MIN, INT_MAX, D, "fflags"}, {"rtphint", "add rtp hinting", 0, FF_OPT_TYPE_CONST, AVFMT_FLAG_RTP_HINT, INT_MIN, INT_MAX, E, "fflags"}, -#if LAVF_API_OLD_METADATA +#if FF_API_OLD_METADATA {"track", " set the track number", OFFSET(track), FF_OPT_TYPE_INT, DEFAULT, 0, INT_MAX, E}, {"year", "set the year", OFFSET(year), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, E}, #endif |