diff options
author | Stephan Hilb <stephan@ecshi.net> | 2012-08-23 18:40:22 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-08-31 00:24:11 +0200 |
commit | 6eac554659b6b6e9b348ec26c44b5105a3f4b11c (patch) | |
tree | a2a723ff2606b5bc72e02f40c21e30062e14ca9e /libavcodec/avcodec.h | |
parent | 469f8b1dcbacc921555af6c068db28ad3d3e5006 (diff) | |
download | ffmpeg-6eac554659b6b6e9b348ec26c44b5105a3f4b11c.tar.gz |
Add CPiA video decoder
The cpia video decoder is intended to be used with the v4l2 demuxer.
There are some small changes to the v4l2 demuxer to support the
variable frame length of the format.
Fixes ticket #1537
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index f4ed8ce2a4..97d0ae6a8b 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -280,6 +280,7 @@ enum AVCodecID { AV_CODEC_ID_SANM = MKBETAG('S','A','N','M'), AV_CODEC_ID_PAF_VIDEO = MKBETAG('P','A','F','V'), AV_CODEC_ID_AVRN = MKBETAG('A','V','R','n'), + AV_CODEC_ID_CPIA = MKBETAG('C','P','I','A'), /* various PCM "codecs" */ AV_CODEC_ID_FIRST_AUDIO = 0x10000, ///< A dummy id pointing at the start of audio codecs |