summaryrefslogtreecommitdiff
path: root/libavcodec/libopenjpeg.c
Commit message (Collapse)AuthorAge
* Enable multithreding when decoding with libopenjpegJean First2011-10-21
| | | | | | | Enable multithreding when decoding with libopenjpeg Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Use explicit struct initializers for AVCodec declarations.Diego Biurrun2011-09-24
|
* libopenjpeg: Drop const qualifier to silence compiler warning.Diego Biurrun2011-07-16
| | | | | libavcodec/libopenjpeg.c:100: warning: passing argument 2 of ‘opj_cio_open’ discards qualifiers from pointer target type /usr/include/openjpeg.h:770: note: expected ‘unsigned char *’ but argument is of type ‘const uint8_t *’
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Merge libavcore into libavutilReinhard Tartler2011-02-15
| | | | | | | | | | | | It is pretty hopeless that other considerable projects will adopt libavutil alone in other projects. Projects that need small footprint are better off with more specialized libraries such as gnulib or rather just copy the necessary parts that they need. With this in mind, nobody is helped by having libavutil and libavcore split. In order to ease maintenance inside and around FFmpeg and to reduce confusion where to put common code, avcore's functionality is merged (back) to avutil. Signed-off-by: Reinhard Tartler <siretart@tauware.de>
* Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-26
| | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Use new imgutils.h API names, fix deprecation warnings.Stefano Sabatini2010-09-07
| | | | Originally committed as revision 25058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the compilation of some libavcodec/lib* files which were notStefano Sabatini2010-08-07
| | | | | | | including libavcore/imgutils.h, which was required since the recent avcodec_check_dimensions() -> av_check_image_size() transition. Originally committed as revision 24734 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove use of the deprecated function avcodec_check_dimensions(), useStefano Sabatini2010-08-06
| | | | | | av_check_image_size() instead. Originally committed as revision 24711 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add new decoder property max_lowres and do not init decoder if requested ↵Carl Eugen Hoyos2010-07-07
| | | | | | value is higher. Originally committed as revision 24098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
| | | | | | | | Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix colours for QT JPEG2000, fixes issue 1540.Carl Eugen Hoyos2009-12-29
| | | | Originally committed as revision 20963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Handle JPEG2000 frames stored in the Quicktime container.Jai Menon2009-11-10
| | | | | | Fixes issue 1525. Originally committed as revision 20500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics : fix indentation.Jai Menon2009-11-10
| | | | Originally committed as revision 20499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove pointless parentheses from return statement.Diego Biurrun2009-10-19
| | | | Originally committed as revision 20310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libopenjpeg wrapper uses get_buffer, set CODEC_CAP_DR1Baptiste Coudurier2009-06-05
| | | | Originally committed as revision 19100 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add lowres support to the libopenjpeg wrapper.Jai Menon2009-05-26
| | | | | | Fixes issue 1097. Originally committed as revision 18955 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use dimensions stored in AVCodecContext instead of local variables.Jai Menon2009-05-26
| | | | Originally committed as revision 18954 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann2009-04-07
| | | | | | | | | | | AVPacket argument rather than a const uint8_t *buf + int buf_size. This allows passing of packet-specific flags from demuxer to decoder, such as the keyframe flag, which appears necessary to playback corePNG P-frames. Patch by Thilo Borgmann thilo.borgmann googlemail com, see also the thread "Google Summer of Code participation" on the mailinglist. Originally committed as revision 18351 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use default system include path for an installed OpenJPEG library.Mathieu Malaterre2009-02-10
| | | | | | patch by Mathieu Malaterre, mathieu.malaterre gmail com Originally committed as revision 17129 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use libopenjpeg for jpeg2k decoding.Jai Menon2009-02-06
Patch by Jaikrishnan Menon Originally committed as revision 17017 to svn://svn.ffmpeg.org/ffmpeg/trunk