summaryrefslogtreecommitdiff
path: root/libavcodec/dv.c
Commit message (Collapse)AuthorAge
...
* factoring code into dv_init_enc_blockRoman Shaposhnik2009-01-31
| | | | Originally committed as revision 16875 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: replacing 0 with NULL for pointer assignmentRoman Shaposhnik2009-01-31
| | | | Originally committed as revision 16874 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: moving the function definition aroundRoman Shaposhnik2009-01-31
| | | | Originally committed as revision 16873 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replacing the constant with a macroRoman Shaposhnik2009-01-31
| | | | Originally committed as revision 16872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-19
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace all occurrence of ENABLE_ by the corresponding CONFIG_, HAVE_ or ARCH_Aurelien Jacobs2009-01-14
| | | | | | and remove all ENABLE_ definitions. Originally committed as revision 16600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Making idct factor tables dynamically allocatedRoman Shaposhnik2008-11-20
| | | | Originally committed as revision 15885 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change of indentationRoman Shaposhnik2008-11-19
| | | | Originally committed as revision 15883 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Getting rid of huge static DV tablesRoman Shaposhnik2008-11-18
| | | | Originally committed as revision 15874 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Getting rid of unneeded extra wrapper functionsRoman Shaposhnik2008-11-18
| | | | Originally committed as revision 15873 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Taking advantage of the new ->execute APIRoman Shaposhnik2008-11-12
| | | | Originally committed as revision 15806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Making it easier to send arbitrary structures as work orders to MT workersRoman Shaposhnik2008-11-12
| | | | Originally committed as revision 15804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* implementing more efficient (and direct) allocation of work for DV codec workersRoman Shaposhnik2008-11-08
| | | | Originally committed as revision 15788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* renaming macro in order to conform with the rest of libavcodecRoman Shaposhnik2008-10-30
| | | | Originally committed as revision 15751 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prettyprinting cosmeticsDiego Biurrun2008-10-24
| | | | Originally committed as revision 15682 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling cosmeticsDiego Biurrun2008-10-24
| | | | Originally committed as revision 15681 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replacing frame_rate and frame_rate_base with an AVRational time_baseRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15584 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unrolling the loops as per Michael's suggestionRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15580 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing a bug that prevented proper unweighting table to be selectedRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygenizing the commentsRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifying the code as per Michael's suggestionRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling cosmeticsDiego Biurrun2008-10-02
| | | | Originally committed as revision 15518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace generic CONFIG_DECODERS preprocessor conditionals by more specificDiego Biurrun2008-09-02
| | | | | | CONFIG_FOO_DECODER conditionals where appropriate. Originally committed as revision 15162 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer asRoman Shaposhnik2008-08-28
| | | | | | specified in SMPTE 370M Originally committed as revision 15010 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetic change aimed at making it easier to see how bits are consumedRoman Shaposhnik2008-08-27
| | | | Originally committed as revision 14998 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factoring out chan_slice / 27 into seq variableRoman Shaposhnik2008-08-27
| | | | Originally committed as revision 14997 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplification of how dct_mode affects decoding.Roman Shaposhnik2008-08-27
| | | | Originally committed as revision 14996 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Making block size in bits variable and dependent on the DV specRoman Shaposhnik2008-08-19
| | | | Originally committed as revision 14842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Making the number of blocks per macroblock dependent on the DV streamRoman Shaposhnik2008-08-19
| | | | | | specification Originally committed as revision 14841 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introducing DV_MAX_BPM macro instead of a hardcoded value for theRoman Shaposhnik2008-08-19
| | | | | | highest number of blocks per macroblock Originally committed as revision 14840 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fixing the units in DV50 tables (both coordinates areRoman Shaposhnik2008-08-11
| | | | | | | supposed to be in units of 8 pixels) and simplifying the calculations of y_ptr and c_offset. Originally committed as revision 14693 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Coalescing the un-weighting and de-quantization steps for fasterRoman Shaposhnik2008-08-11
| | | | | | processing Originally committed as revision 14691 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move #ifdef CONFIG_DVVIDEO_ENCODER up to cover all functions used for encoding.Diego Biurrun2008-07-11
| | | | Originally committed as revision 14166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make preprocessor condition more specific and useful by changingDiego Biurrun2008-07-11
| | | | | | #ifdef CONFIG_ENCODERS --> #ifdef CONFIG_DVVIDEO_ENCODER. Originally committed as revision 14165 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
* remove useless wrapper funcBaptiste Coudurier2008-06-10
| | | | Originally committed as revision 13738 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set avctx time_base in dv decoderBaptiste Coudurier2008-05-28
| | | | Originally committed as revision 13515 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
* Add some long names to AVCodec declarations.Stefano Sabatini2008-04-29
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13017 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase alignment for DCT block arrays from 8 to 16Alexander Strange2008-04-08
| | | | | | Patch by Alexander Strange ( astrange ithinksw com ) Originally committed as revision 12767 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
* remove more useless mpegvideo.h includesAurelien Jacobs2008-03-05
| | | | Originally committed as revision 12323 to svn://svn.ffmpeg.org/ffmpeg/trunk
* some constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11758 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constsMichael Niedermayer2008-02-01
| | | | | | I have underestimated this a little, and these are just some ... Originally committed as revision 11708 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add ff_ prefix to all simple_idct symbolsAurelien Jacobs2007-12-08
| | | | Originally committed as revision 11192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* force 16-bytes alignement of block array, as needed by the implementation of ↵John Dalgliesh2007-03-15
| | | | | | | | ff_dct_sse2 patch by John Dalgliesh %johnd A defyne P org% Originally committed as revision 8420 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill av_mallocz_static()Michael Niedermayer2007-03-14
| | | | Originally committed as revision 8400 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill a av_mallocz_static()Michael Niedermayer2007-03-13
| | | | Originally committed as revision 8395 to svn://svn.ffmpeg.org/ffmpeg/trunk
* This fixes error handling for BeOS, removing the need for some ifdefs.François Revol2007-02-13
| | | | | | | | | AVERROR_ defines are moved to avcodec.h as they are needed in there as well. Feel free to move that to avutil/common.h. Bumped up avcodec/format version numbers as though it's binary compatible we will want to rebuild apps as error values changed. Please from now on use return AVERROR(EFOO) instead of the ugly return -EFOO in your code. This also removes the need for berrno.h. Originally committed as revision 7965 to svn://svn.ffmpeg.org/ffmpeg/trunk