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 /libavdevice/lavfi.c | |
parent | dbd117240a8b0e905b4906e93c633976843123e9 (diff) | |
download | ffmpeg-539399d4d1947988c189f72467da0c2532294388.tar.gz |
AVOptions: rename remaining FF_OPT_TYPE_* to AV_OPT_TYPE_*.
Diffstat (limited to 'libavdevice/lavfi.c')
-rw-r--r-- | libavdevice/lavfi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/lavfi.c b/libavdevice/lavfi.c index 0477081ae1..9228156988 100644 --- a/libavdevice/lavfi.c +++ b/libavdevice/lavfi.c @@ -321,7 +321,7 @@ static int lavfi_read_packet(AVFormatContext *avctx, AVPacket *pkt) #define DEC AV_OPT_FLAG_DECODING_PARAM static const AVOption options[] = { - { "graph", "Libavfilter graph", OFFSET(graph_str), FF_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC }, + { "graph", "Libavfilter graph", OFFSET(graph_str), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC }, { NULL }, }; |