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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2013-12-31 17:09:48 +0400
committerNicolas George <george@nsup.org>2014-02-11 13:29:02 +0400
commit1b05ac220ef1370cb6ba805b82ca764e4c5bed25 (patch)
treefd45a2be18ee8ab1ebc2c610019666db9b7522c8 /libavformat/internal.h
parent6c12b1de064d2604d19cb4c238a788cfed9679ac (diff)
lavf: add write_uncoded_frame() API.
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r--libavformat/internal.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h
index a840f8af05..f19cebf22e 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -398,4 +398,18 @@ int ff_rfps_add_frame(AVFormatContext *ic, AVStream *st, int64_t dts);
void ff_rfps_calculate(AVFormatContext *ic);
+/**
+ * Flags for AVFormatContext.write_uncoded_frame()
+ */
+enum AVWriteUncodedFrameFlags {
+
+ /**
+ * Query whether the feature is possible on this stream.
+ * The frame argument is ignored.
+ */
+ AV_WRITE_UNCODED_FRAME_QUERY = 0x0001,
+
+};
+
+
#endif /* AVFORMAT_INTERNAL_H */