diff options
author | Nicolas George <george@nsup.org> | 2013-12-31 14:09:48 +0100 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2014-02-11 10:29:02 +0100 |
commit | 1b05ac220ef1370cb6ba805b82ca764e4c5bed25 (patch) | |
tree | fd45a2be18ee8ab1ebc2c610019666db9b7522c8 /libavformat/internal.h | |
parent | 6c12b1de064d2604d19cb4c238a788cfed9679ac (diff) | |
download | ffmpeg-1b05ac220ef1370cb6ba805b82ca764e4c5bed25.tar.gz |
lavf: add write_uncoded_frame() API.
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 14 |
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 */ |