summaryrefslogtreecommitdiff
path: root/libavformat/hls.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2015-08-16 19:34:13 -0400
committerRonald S. Bultje <rsbultje@gmail.com>2015-08-18 11:48:49 -0400
commit6471040f5650ad8c06e8fe285325b41db5bef75e (patch)
tree0605c3ff099ca1832de373b8444faa2659aea443 /libavformat/hls.c
parent229843aa359ae0c9519977d7fa952688db63f559 (diff)
FF_OPT_TYPE_* -> AV_OPT_TYPE_*.
Diffstat (limited to 'libavformat/hls.c')
-rw-r--r--libavformat/hls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/hls.c b/libavformat/hls.c
index 4691a60502..caecbdec9c 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -1812,7 +1812,7 @@ static int hls_probe(AVProbeData *p)
#define FLAGS AV_OPT_FLAG_DECODING_PARAM
static const AVOption hls_options[] = {
{"live_start_index", "segment index to start live streams at (negative values are from the end)",
- OFFSET(live_start_index), FF_OPT_TYPE_INT, {.i64 = -3}, INT_MIN, INT_MAX, FLAGS},
+ OFFSET(live_start_index), AV_OPT_TYPE_INT, {.i64 = -3}, INT_MIN, INT_MAX, FLAGS},
{NULL}
};