diff options
author | Sascha Sommer <saschasommer@freenet.de> | 2009-09-16 15:08:26 +0000 |
---|---|---|
committer | Sascha Sommer <saschasommer@freenet.de> | 2009-09-16 15:08:26 +0000 |
commit | d859bb1db0b082644881058a12653e3207855678 (patch) | |
tree | f1472353e4ff258de5862f06c1b4ddf38019845a /libavcodec/avcodec.h | |
parent | 9d66ef18fa5504b073067691ed906bc15cfc9c87 (diff) | |
download | ffmpeg-d859bb1db0b082644881058a12653e3207855678.tar.gz |
Add CODEC_CAP_SUBFRAMES for codecs that output multiple subframes
per AVPacket
No longer print "Multiple frames in a packet" error message
when CODEC_CAP_SUBFRAMES is set (wmapro, wavpack)
Originally committed as revision 19881 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index fe1e060007..3909b66d7a 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -605,6 +605,10 @@ typedef struct RcOverride{ * Codec can export data for HW decoding (VDPAU). */ #define CODEC_CAP_HWACCEL_VDPAU 0x0080 +/** + * Codec can output multiple frames per AVPacket + */ +#define CODEC_CAP_SUBFRAMES 0x0100 //The following defines may change, don't expect compatibility if you use them. #define MB_TYPE_INTRA4x4 0x0001 |