summaryrefslogtreecommitdiff
path: root/libavformat/options.c
diff options
context:
space:
mode:
authorMichael Bradshaw <mbradshaw@sorensonmedia.com>2012-06-22 17:03:18 -0600
committerNicolas George <nicolas.george@normalesup.org>2012-06-28 09:59:53 +0200
commitfc5999d0270ef83b9229e173b4106ae374041a19 (patch)
tree3c614ebb527ef8b7522204fc93d2d6c33f3948fa /libavformat/options.c
parent87df986dcf90dcda2d10d9c3b3c84656cdd032aa (diff)
lavf: add proper enum type for fmt ctx duration esitmation method
Signed-off-by: Michael Bradshaw <mbradshaw@sorensonmedia.com>
Diffstat (limited to 'libavformat/options.c')
-rw-r--r--libavformat/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/options.c b/libavformat/options.c
index 915581f13f..8548381a24 100644
--- a/libavformat/options.c
+++ b/libavformat/options.c
@@ -111,7 +111,7 @@ AVFormatContext *avformat_alloc_context(void)
return ic;
}
-int av_fmt_ctx_get_duration_estimation_method(const AVFormatContext* ctx)
+enum AVDurationEstimationMethod av_fmt_ctx_get_duration_estimation_method(const AVFormatContext* ctx)
{
return ctx->duration_estimation_method;
}