diff options
author | Nicolas Bertrand <nicoinattendu@gmail.com> | 2013-04-22 11:41:01 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-04-22 15:38:29 +0200 |
commit | c81a70638116eaf4251075475e5cbb600a33c5ec (patch) | |
tree | aa1763bfcab7c9d475bba445ca99de2bfe805826 /libavcodec/avcodec.h | |
parent | 0c15a9aa7e1654a19144eb594f9639a57fd47482 (diff) | |
download | ffmpeg-c81a70638116eaf4251075475e5cbb600a33c5ec.tar.gz |
JPEG 2000 decoder for DCinema
Based on the 2007 GSoC project from Kamil Nowosad <k.nowosad@students.mimuw.edu.pl>
Updated to current programming standards, style and many more small
fixes by Diego Biurrun <diego@biurrun.de>.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index c36d976a52..d8e5d5e471 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2570,6 +2570,12 @@ typedef struct AVCodecContext { #define FF_PROFILE_MPEG4_SIMPLE_STUDIO 14 #define FF_PROFILE_MPEG4_ADVANCED_SIMPLE 15 +#define FF_PROFILE_JPEG2000_CSTREAM_RESTRICTION_0 0 +#define FF_PROFILE_JPEG2000_CSTREAM_RESTRICTION_1 1 +#define FF_PROFILE_JPEG2000_CSTREAM_NO_RESTRICTION 2 +#define FF_PROFILE_JPEG2000_DCINEMA_2K 3 +#define FF_PROFILE_JPEG2000_DCINEMA_4K 4 + /** * level * - encoding: Set by user. |