FF_OPT_TYPE_* -> AV_OPT_TYPE_*.

This commit is contained in:
Ronald S. Bultje 2015-08-16 19:34:13 -04:00
parent 229843aa35
commit 6471040f56
10 changed files with 22 additions and 22 deletions

View file

@ -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}
};