Commit 58547ac6 authored by michael's avatar michael

Clarify CODEC_CAP_SUBFRAMES.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21364 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ccd8eee3
......@@ -619,6 +619,14 @@ typedef struct RcOverride{
#define CODEC_CAP_HWACCEL_VDPAU 0x0080
/**
* Codec can output multiple frames per AVPacket
* Normally demuxers return one frame at a time, demuxers which do not do
* are connected to a parser to split what they return into proper frames.
* This flag is reserved to the very rare category of codecs which have a
* bitstream that cannot be split into frames without timeconsuming
* operations like full decoding. Demuxers carring such bitstreams thus
* may return multiple frames in a packet. This has many disadvantages like
* prohibiting stream copy in many cases thus it should only be considered
* as a last resort.
*/
#define CODEC_CAP_SUBFRAMES 0x0100
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment