diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-10-17 07:33:10 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-10-17 07:33:10 +0200 |
commit | 539399d4d1947988c189f72467da0c2532294388 (patch) | |
tree | c8ac82989d00b4f0673954a5c20073c6533f0592 /libavcodec/timecode.h | |
parent | dbd117240a8b0e905b4906e93c633976843123e9 (diff) | |
download | ffmpeg-539399d4d1947988c189f72467da0c2532294388.tar.gz |
AVOptions: rename remaining FF_OPT_TYPE_* to AV_OPT_TYPE_*.
Diffstat (limited to 'libavcodec/timecode.h')
-rw-r--r-- | libavcodec/timecode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/timecode.h b/libavcodec/timecode.h index c1664075c7..5646199ff7 100644 --- a/libavcodec/timecode.h +++ b/libavcodec/timecode.h @@ -34,7 +34,7 @@ "timecode", "set timecode value following hh:mm:ss[:;.]ff format, " \ "use ';' or '.' before frame number for drop frame", \ offsetof(ctx, tc.str), \ - FF_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, flags + AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, flags struct ff_timecode { char *str; ///< string following the hh:mm:ss[:;.]ff format |