Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2013-03-16 18:25:55 +0400
committerNicolas George <nicolas.george@normalesup.org>2013-03-21 00:04:28 +0400
commit8d928a9d9967b85283a0a167bdbd7168ae2f51ba (patch)
tree3a10dbf462055b92bac21aea722c5a07dc16fc7d /libavutil/opt.h
parent68fb7e260bcd9ecd666dded95bb19db8c2898388 (diff)
lavu/opt: add AV_OPT_TYPE_DURATION.
Diffstat (limited to 'libavutil/opt.h')
-rw-r--r--libavutil/opt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/opt.h b/libavutil/opt.h
index b36aebe1ed..30f729e447 100644
--- a/libavutil/opt.h
+++ b/libavutil/opt.h
@@ -231,6 +231,7 @@ enum AVOptionType{
AV_OPT_TYPE_PIXEL_FMT = MKBETAG('P','F','M','T'),
AV_OPT_TYPE_SAMPLE_FMT = MKBETAG('S','F','M','T'),
AV_OPT_TYPE_VIDEO_RATE = MKBETAG('V','R','A','T'), ///< offset must point to AVRational
+ AV_OPT_TYPE_DURATION = MKBETAG('D','U','R',' '),
#if FF_API_OLD_AVOPTIONS
FF_OPT_TYPE_FLAGS = 0,
FF_OPT_TYPE_INT,