Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cljr: split decoder and encoder | Nidhi Makhijani | 2014-07-06 | 1 | -166/+0 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | cljr: use the AVFrame API properly. | Anton Khirnov | 2013-11-16 | 1 | -7/+9 |
| | |||||
* | cosmetics: Group .name and .long_name together in codec/format declarations | Diego Biurrun | 2013-10-03 | 1 | -2/+2 |
| | |||||
* | lavc decoders: work with refcounted frames. | Anton Khirnov | 2013-03-08 | 1 | -37/+19 |
| | |||||
* | cljr: return a meaningful error code. | Anton Khirnov | 2013-01-06 | 1 | -3/+3 |
| | |||||
* | lavc: fix decode_frame() third parameter semantics for video decoders | Anton Khirnov | 2012-12-04 | 1 | -2/+2 |
| | | | | It's got_frame, not data size | ||||
* | lavc: add a wrapper for AVCodecContext.get_buffer(). | Anton Khirnov | 2012-12-04 | 1 | -1/+1 |
| | | | | It will be useful in the upcoming transition to refcounted AVFrames. | ||||
* | Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormat | Anton Khirnov | 2012-10-08 | 1 | -3/+3 |
| | |||||
* | Replace all CODEC_ID_* with AV_CODEC_ID_* | Anton Khirnov | 2012-08-07 | 1 | -2/+2 |
| | |||||
* | cljr: implement encode2. | Anton Khirnov | 2012-02-12 | 1 | -7/+15 |
| | |||||
* | cljr: set the properties of the coded_frame, not input frame. | Anton Khirnov | 2012-02-12 | 1 | -2/+2 |
| | |||||
* | cljr: fix buf_size sanity check | Paul B. Mahol | 2011-12-18 | 1 | -1/+1 |
| | | | | Signed-off-by: Janne Grunau <janne-libav@jannau.net> | ||||
* | cljr: Check if width and height are positive integers | Shitiz Garg | 2011-12-18 | 1 | -0/+5 |
| | | | | | | | | Width and height might get passed as 0 and would cause floating point exceptions in decode_frame. Fixes bugzilla #149 Signed-off-by: Janne Grunau <janne-libav@jannau.net> | ||||
* | cljr: remove unused code | Paul B Mahol | 2011-12-10 | 1 | -2/+0 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | cljr: K&R cosmetics | Diego Biurrun | 2011-12-08 | 1 | -20/+23 |
| | |||||
* | cljr: return a more sensible value when encountering invalid headers | Diego Biurrun | 2011-12-08 | 1 | -1/+1 |
| | |||||
* | cljr: drop unnecessary emms_c() calls without MMX code | Diego Biurrun | 2011-12-08 | 1 | -4/+0 |
| | |||||
* | cljr: remove useless casts | Mans Rullgard | 2011-12-08 | 1 | -3/+3 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | cljr: group encode/decode parts under single ifdefs | Mans Rullgard | 2011-12-08 | 1 | -48/+40 |
| | | | | | | | | This groups the encode/decode parts under single ifdefs and eliminates the encode_init() function as it merely calls common_init(). Also fix whitespace in moved code. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | cljr: remove stray semicolon | Mans Rullgard | 2011-12-08 | 1 | -1/+1 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | cljr: add missing return statement in decode_end() | Paul B Mahol | 2011-12-08 | 1 | -0/+1 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | cljr: add encoder | Paul B Mahol | 2011-12-08 | 1 | -17/+26 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | cljr: release picture at end of decoding | Paul B. Mahol | 2011-12-08 | 1 | -0/+8 |
| | | | | | | Otherwise after transcoding from cljr we get: Found 1 unreleased buffers! Signed-off-by: Janne Grunau <janne-libav@jannau.net> | ||||
* | cljr: simplify CLJRContext | Paul B. Mahol | 2011-12-07 | 1 | -10/+8 |
| | | | | | | There is no need to have delta, offset and gb in CLJRContext. Signed-off-by: Janne Grunau <janne-libav@jannau.net> | ||||
* | lavc: use avpriv_ prefix for ff_copy_bits and align_put_bits. | Anton Khirnov | 2011-10-20 | 1 | -1/+1 |
| | | | | They are used in lavf. | ||||
* | cljr: init_get_bits size in bits instead of bytes | Alex Converse | 2011-09-09 | 1 | -1/+1 |
| | |||||
* | cosmetics: remove some stray comments from AVCodec declarations | Diego Biurrun | 2011-08-03 | 1 | -1/+0 |
| | |||||
* | lavc: use designated initialisers for all codecs. | Anton Khirnov | 2011-07-29 | 1 | -15/+13 |
| | | | | It's more readable and less prone to breakage. | ||||
* | Replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*. | Stefano Sabatini | 2011-05-02 | 1 | -2/+2 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | Replace FFmpeg with Libav in licence headers | Mans Rullgard | 2011-03-19 | 1 | -4/+4 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf. | Diego Elio Pettenò | 2011-01-26 | 1 | -2/+2 |
| | | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Check if buffer is large enough for given resolution. | Daniel Kang | 2011-01-07 | 1 | -0/+5 |
| | | | | | | | | Fixes issue 2501. Patch by Daniel Kang, daniel.d.kang at gmail Originally committed as revision 26258 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Remove explicit filename from Doxygen @file commands. | Diego Biurrun | 2010-04-20 | 1 | -1/+1 |
| | | | | | | | | 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, which | Stefano Sabatini | 2010-03-30 | 1 | -2/+2 |
| | | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Rename bitstream.h to get_bits.h. | Stefano Sabatini | 2009-04-13 | 1 | -1/+1 |
| | | | | Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an | Thilo Borgmann | 2009-04-07 | 1 | -1/+3 |
| | | | | | | | | | | | 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 | ||||
* | Remove unused variables. | Diego Biurrun | 2009-02-08 | 1 | -1/+0 |
| | | | | Originally committed as revision 17081 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | typo: CODEC_ID_cljr --> CODEC_ID_CLJR | Diego Biurrun | 2009-02-08 | 1 | -1/+1 |
| | | | | Originally committed as revision 17080 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Use full internal pathname in doxygen @file directives. | Diego Biurrun | 2009-02-01 | 1 | -1/+1 |
| | | | | | | | Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Change semantic of CONFIG_*, HAVE_* and ARCH_*. | Aurelien Jacobs | 2009-01-13 | 1 | -3/+4 |
| | | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Disable encoders by undefining CONFIG_FOO_ENCODER once instead of littering | Diego Biurrun | 2008-09-03 | 1 | -6/+4 |
| | | | | | | the code with preprocessor directives. Originally committed as revision 15176 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Surround some encoding-specific functions with the appropriate | Diego Biurrun | 2008-09-03 | 1 | -0/+4 |
| | | | | | | encoding-specific #ifdef. Originally committed as revision 15175 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Replace generic CONFIG_ENCODERS preprocessor conditionals by more specific | Diego Biurrun | 2008-09-03 | 1 | -4/+2 |
| | | | | | | CONFIG_FOO_ENCODER conditionals where appropriate. Originally committed as revision 15174 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Make AVCodec long_names definition conditional depending on CONFIG_SMALL. | Stefano Sabatini | 2008-06-12 | 1 | -2/+2 |
| | | | | Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Add long names to many AVCodec declarations. | Stefano Sabatini | 2008-04-27 | 1 | -0/+2 |
| | | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13005 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Apply 'cold' attribute to init/uninit functions in libavcodec | Zuxy Meng | 2008-03-21 | 1 | -3/+3 |
| | | | | Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | remove more useless mpegvideo.h includes | Aurelien Jacobs | 2008-03-05 | 1 | -3/+4 |
| | | | | Originally committed as revision 12323 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | const | Michael Niedermayer | 2008-02-01 | 1 | -1/+1 |
| | | | | Originally committed as revision 11719 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | license header consistency cosmetics | Diego Biurrun | 2007-07-05 | 1 | -1/+0 |
| | | | | Originally committed as revision 9484 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Change license headers to say 'FFmpeg' instead of 'this program/this library' | Diego Biurrun | 2006-10-07 | 1 | -4/+6 |
| | | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk |