summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
...
* Use FFMIN() instead of rewriting it.Vitor Sessak2008-09-07
| | | | Originally committed as revision 15248 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize broken clipping in its own function and document it.Vitor Sessak2008-09-07
| | | | Originally committed as revision 15247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: whitespace/linebreaksVitor Sessak2008-09-07
| | | | Originally committed as revision 15246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the same 8 bit -> 16 bit conversion as QuickTime.Vitor Sessak2008-09-07
| | | | Originally committed as revision 15245 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not share context variables between channels and do not zero them atVitor Sessak2008-09-07
| | | | | | decode_frame(). This makes the output much closer to that of the binary decoder. Originally committed as revision 15244 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove output pointer from contextVitor Sessak2008-09-07
| | | | Originally committed as revision 15243 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add 1bpp decoding function and extend 4bpp function toStefan Gehrer2008-09-07
| | | | | | also cover the 2bpp case. Originally committed as revision 15242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* license header consistency cosmetics.Diego Biurrun2008-09-06
| | | | Originally committed as revision 15227 to svn://svn.ffmpeg.org/ffmpeg/trunk
* license header consistency cosmeticsDiego Biurrun2008-09-06
| | | | Originally committed as revision 15225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove not approved parts.Vladimir Voroshilov2008-09-06
| | | | Originally committed as revision 15224 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Test a var for overflow just after it is setVitor Sessak2008-09-06
| | | | Originally committed as revision 15223 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless parentheses.Vitor Sessak2008-09-06
| | | | Originally committed as revision 15222 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix nuv decoder to use reget_buffer for non-keyframes and correctlyReimar Döffinger2008-09-05
| | | | | | identify non-keyframe RTJPEG frames. Originally committed as revision 15217 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: indent after last commit and remove useless bracesVitor Sessak2008-09-05
| | | | Originally committed as revision 15214 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify: use a for instead of unrolling by handVitor Sessak2008-09-05
| | | | Originally committed as revision 15213 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Functions mace{3,6}_decode_frame() are just wrappers to Exp1to{3,6}(). This ↵Vitor Sessak2008-09-04
| | | | | | | | commit moves the code of Exp1to* to the decode functions. Originally committed as revision 15212 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify: use two distinct functions to decode MACE3 and MACE6, since theVitor Sessak2008-09-04
| | | | | | previous mace_decode_init() function was almost just a switch statement. Originally committed as revision 15208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify mace_decode_frame()Vitor Sessak2008-09-04
| | | | Originally committed as revision 15207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless commentsVitor Sessak2008-09-04
| | | | Originally committed as revision 15205 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent mace.c, its indentation was completly inconsistent with the coding ↵Vitor Sessak2008-09-04
| | | | | | rules. Originally committed as revision 15204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: s/LPC_type/LPC_TYPE/Vitor Sessak2008-09-04
| | | | Originally committed as revision 15202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Multiply table by -1. This avoid doing this calculation (that was introducedVitor Sessak2008-09-04
| | | | | | in my last commit) in real time. Originally committed as revision 15195 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix artifacts of MPEG4-720I-DN-SV8K.trp caused by lack of IDR pictures andMichael Niedermayer2008-09-04
| | | | | | subsequent zero POC value. Originally committed as revision 15194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid duplicating compute_lpc_coefs() function in both the RA288 and AAC ↵Vitor Sessak2008-09-04
| | | | | | decoders. Originally committed as revision 15193 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ignore the spec, and calculate aspect ratio on width/height.Michael Niedermayer2008-09-03
| | | | | | Fixes issue562 and issue621. Originally committed as revision 15183 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify sample_aspect_ratio.Michael Niedermayer2008-09-03
| | | | Originally committed as revision 15180 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix issue 616 on roundup : decoding of short flac filesJai Menon2008-09-03
| | | | Originally committed as revision 15177 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable encoders by undefining CONFIG_FOO_ENCODER once instead of litteringDiego Biurrun2008-09-03
| | | | | | the code with preprocessor directives. Originally committed as revision 15176 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Surround some encoding-specific functions with the appropriateDiego Biurrun2008-09-03
| | | | | | encoding-specific #ifdef. Originally committed as revision 15175 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace generic CONFIG_ENCODERS preprocessor conditionals by more specificDiego Biurrun2008-09-03
| | | | | | CONFIG_FOO_ENCODER conditionals where appropriate. Originally committed as revision 15174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* gain codebook (first stage), 8k mode for G.729Vladimir Voroshilov2008-09-03
| | | | Originally committed as revision 15171 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Another set of approved G.729 chunks (from decoder core)Vladimir Voroshilov2008-09-03
| | | | Originally committed as revision 15168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* theoradec: cosmetics: indentationAurelien Jacobs2008-09-03
| | | | Originally committed as revision 15167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* theoradec: skip decoding of uncoded MV in 4MV codeAurelien Jacobs2008-09-03
| | | | | | | | Thusnelda, the new experimental Theora encoder is using this Theora feature that was previously not exploited. fixes issue579 Originally committed as revision 15166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* theoradec: small 4MV code reorganization to ease future improvementsAurelien Jacobs2008-09-03
| | | | | | no functional changes Originally committed as revision 15165 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
* Silence a couple of 'defined but not used' warnings by adding an av_unusedDiego Biurrun2008-09-02
| | | | | | attribute to the relevant function declarations. Originally committed as revision 15161 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prevent a division by 0 in the g726 decoder when the configured samplerate is 0.Laurent Aimar2008-09-02
| | | | | | patch by Laurent Aimar, fenrir via.ecp fr Originally committed as revision 15160 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parity bit calculation routine for G.729Vladimir Voroshilov2008-09-02
| | | | Originally committed as revision 15154 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Try to support invalid h264 that does not mark IDR with POC=0.Michael Niedermayer2008-09-02
| | | | | | Fixes issue576. Originally committed as revision 15153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a separate line in Makefile for E-AC-3 decoder and only compile it whenJustin Ruggles2008-09-02
| | | | | | GPL is enabled. fixes building without GPL or with liba52. Originally committed as revision 15151 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make pcm encoder setting bits_per_sample fieldBaptiste Coudurier2008-09-01
| | | | Originally committed as revision 15150 to svn://svn.ffmpeg.org/ffmpeg/trunk
* create a separate codec_id for E-AC-3Justin Ruggles2008-09-01
| | | | Originally committed as revision 15143 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remaining parts of Nellymoser encoderBartlomiej Wolowiec2008-09-01
| | | | Originally committed as revision 15138 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check ff_init_me()s return value.Michael Niedermayer2008-09-01
| | | | Originally committed as revision 15137 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1000l Fix snow regression test that i broke in r15135.Michael Niedermayer2008-09-01
| | | | Originally committed as revision 15136 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Warn the user about me_method values that are not supported.Michael Niedermayer2008-08-31
| | | | | | Fixes issue503 Originally committed as revision 15135 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimize vorbis_residue_decode() so that vr->type is a constant.Michael Niedermayer2008-08-31
| | | | | | Based on a patch by Siarhei Siamashka. Originally committed as revision 15134 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove debuging junk that probably hasnt been used by anyone since years.Michael Niedermayer2008-08-31
| | | | Originally committed as revision 15133 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Okayed parts of nellymoserenc.cBartlomiej Wolowiec2008-08-31
| | | | Originally committed as revision 15126 to svn://svn.ffmpeg.org/ffmpeg/trunk