summaryrefslogtreecommitdiff
path: root/libavcodec/flashsv.c
Commit message (Collapse)AuthorAge
* flashsv: return more meaningful error valueDiego Biurrun2011-10-11
|
* flashsv: fix typo in av_log() messageDiego Biurrun2011-10-11
|
* add Flash Screen Video 2 decoderKostya Shishkov2011-07-22
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* flashsv: split flashsv_decode_block() off from flashsv_decode_frame().Diego Biurrun2011-07-16
|
* flashsv: inline copy_region() into flashsv_decode_frame()Diego Biurrun2011-07-08
|
* flashsv: improve some variable namesDiego Biurrun2011-07-07
|
* flashsv: improve some comments and fix some wrong onesDiego Biurrun2011-07-06
|
* flashsv: Eliminate redundant variable indirection.Diego Biurrun2011-07-06
| | | | | As a positive side-effect, this gets rid of the following warning: libavcodec/flashsv.c:190:38: warning: assignment discards ‘const’ qualifier from pointer target type
* flashsv: set reference frame type to full frameDiego Biurrun2011-07-06
|
* flashsv: replace bitstream description by a link to the specificationDiego Biurrun2011-07-06
| | | | | | An official specification now exists and it is both more detailed and easier to understand than the incomplete notes available here. Also remove ideas on how to implement an encoder; these notes are already present in the encoder.
* flashsv: convert a debug av_log into av_dlogDiego Biurrun2011-07-06
|
* flashsv: simplify conditionDiego Biurrun2011-07-06
|
* flashsv: return more meaningful error valuesDiego Biurrun2011-07-06
|
* flashsv: cosmetics: break some overly long linesDiego Biurrun2011-07-06
|
* flashsv: cosmetics: drop some unnecessary parenthesesDiego Biurrun2011-07-06
|
* flashsv: K&R cosmeticsDiego Biurrun2011-05-04
|
* flashsv: Return more meaningful error values.Diego Biurrun2011-04-25
|
* flashsv: Employ explicit AVCodec struct initializers.Diego Biurrun2011-04-25
|
* cosmetics: K&R coding style and more whitespace for Flash Screen VideoDiego Biurrun2011-04-25
|
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Remove a few if (p) av_free(p) formsClément Bœsch2011-02-03
| | | | 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
| | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
* 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
* Fixed buffer overread in flashsv decoder.Laurent Aimar2010-03-04
| | | | Originally committed as revision 22210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not release the AVFrame when using reget_buffer in flashsv.Benjamin Larsson2009-09-13
| | | | Originally committed as revision 19834 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use reget_buffer instead of get_buffer. Fixes issue1367.Benjamin Larsson2009-09-10
| | | | | | Patch by jarkko.palviainen.sesca.com. Originally committed as revision 19814 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark all pix_fmts and supported_framerates compound literals as const.Reimar Döffinger2009-09-06
| | | | | | Makes no difference for gcc but at least icc can put them in .rodata then. Originally committed as revision 19789 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename bitstream.h to get_bits.h.Stefano Sabatini2009-04-13
| | | | Originally committed as revision 18494 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 full internal pathname in doxygen @file directives.Diego Biurrun2009-02-01
| | | | | | | 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
* flashsv: use skip_bits_long() where requiredMåns Rullgård2008-11-24
| | | | | | | skip_bits(gb, n) with n > 17 doesn't work with all bitstream readers. Switch to skip_bits_long() instead. Originally committed as revision 15930 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-12
| | | | Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace some occurrences of -1 with PIX_FMT_NONE.Carl Eugen Hoyos2008-05-11
| | | | | | Fixes icc warning #188: enumerated type mixed with another type Originally committed as revision 13130 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Long name spelling fixesBenjamin Larsson2008-05-02
| | | | Originally committed as revision 13038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add long names to many AVCodec declarations.Stefano Sabatini2008-04-27
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo: occured --> occurredDiego Biurrun2008-03-22
| | | | Originally committed as revision 12549 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-21
| | | | Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11726 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant #inclusion of common.h, avcodec.h already #includes it.Diego Biurrun2007-05-10
| | | | Originally committed as revision 8967 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of unnecessary pointer casts.Nicholas Tung2007-04-08
| | | | | | patch by Nicholas Tung, ntung ntung com Originally committed as revision 8687 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove superfluous setting of has_b_frames in codecs without B-frames.Nicholas Tung2007-04-07
| | | | | | patch by Nicholas Tung, ntung ntung com Originally committed as revision 8647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare zlib dependency in the Makefile, not in the source.Diego Biurrun2007-01-21
| | | | Originally committed as revision 7610 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Really fix my never ending mistakes.Benjamin Larsson2007-01-21
| | | | Originally committed as revision 7609 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't break compilation on systems without zlib.Benjamin Larsson2007-01-21
| | | | Originally committed as revision 7608 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The block_size might be used incorrectly if it is not updated.Benjamin Larsson2007-01-21
| | | | Originally committed as revision 7607 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of #ifdef CONFIG_ZLIB in the code. Code cleanup.Benjamin Larsson2007-01-21
| | | | Originally committed as revision 7597 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flash Screen Video decoder (fourcc:FSV1)Benjamin Larsson2006-06-01
Originally committed as revision 5436 to svn://svn.ffmpeg.org/ffmpeg/trunk