aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
Commit message (Collapse)AuthorAgeFilesLines
* Exploit symmetry to reduce size of tables by half.Vitor Sessak2008-09-071-202/+112
| | | | Originally committed as revision 15255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: s/short/int16_t/Vitor Sessak2008-09-071-5/+5
| | | | Originally committed as revision 15253 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove cast, now tables are signed.Vitor Sessak2008-09-071-4/+4
| | | | Originally committed as revision 15252 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert tables to signed and decimal.Vitor Sessak2008-09-071-194/+194
| | | | Originally committed as revision 15251 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused table entries.Vitor Sessak2008-09-071-75/+77
| | | | Originally committed as revision 15250 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove commented out code.Vitor Sessak2008-09-071-3/+0
| | | | Originally committed as revision 15249 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use FFMIN() instead of rewriting it.Vitor Sessak2008-09-071-4/+1
| | | | 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-071-12/+16
| | | | Originally committed as revision 15247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: whitespace/linebreaksVitor Sessak2008-09-071-12/+18
| | | | 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-071-3/+7
| | | | 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-071-11/+13
| | | | | | 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-071-19/+21
| | | | Originally committed as revision 15243 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add 1bpp decoding function and extend 4bpp function toStefan Gehrer2008-09-071-46/+89
| | | | | | also cover the 2bpp case. Originally committed as revision 15242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* license header consistency cosmetics.Diego Biurrun2008-09-061-2/+2
| | | | Originally committed as revision 15227 to svn://svn.ffmpeg.org/ffmpeg/trunk
* license header consistency cosmeticsDiego Biurrun2008-09-061-0/+2
| | | | Originally committed as revision 15225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove not approved parts.Vladimir Voroshilov2008-09-061-18/+0
| | | | Originally committed as revision 15224 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Test a var for overflow just after it is setVitor Sessak2008-09-061-2/+2
| | | | Originally committed as revision 15223 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless parentheses.Vitor Sessak2008-09-061-1/+1
| | | | 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-051-6/+16
| | | | | | 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-051-6/+5
| | | | Originally committed as revision 15214 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify: use a for instead of unrolling by handVitor Sessak2008-09-051-7/+4
| | | | 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-041-90/+34
| | | | | | | | 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-041-24/+26
| | | | | | 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-041-8/+11
| | | | Originally committed as revision 15207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless commentsVitor Sessak2008-09-041-9/+0
| | | | 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-041-95/+95
| | | | | | rules. Originally committed as revision 15204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: s/LPC_type/LPC_TYPE/Vitor Sessak2008-09-041-9/+9
| | | | 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-042-10/+10
| | | | | | 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-041-0/+1
| | | | | | 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-044-95/+69
| | | | | | 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-031-1/+3
| | | | | | Fixes issue562 and issue621. Originally committed as revision 15183 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify sample_aspect_ratio.Michael Niedermayer2008-09-031-0/+1
| | | | Originally committed as revision 15180 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix issue 616 on roundup : decoding of short flac filesJai Menon2008-09-031-1/+1
| | | | 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-032-12/+8
| | | | | | 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-032-0/+8
| | | | | | 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-038-47/+44
| | | | | | 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-031-0/+14
| | | | 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-031-0/+43
| | | | Originally committed as revision 15168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* theoradec: cosmetics: indentationAurelien Jacobs2008-09-031-9/+9
| | | | Originally committed as revision 15167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* theoradec: skip decoding of uncoded MV in 4MV codeAurelien Jacobs2008-09-031-1/+9
| | | | | | | | 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-031-7/+6
| | | | | | 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-023-12/+14
| | | | | | 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-021-4/+4
| | | | | | 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-021-1/+8
| | | | | | 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-021-0/+8
| | | | 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-021-3/+3
| | | | | | 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-021-0/+1
| | | | | | 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-011-1/+2
| | | | Originally committed as revision 15150 to svn://svn.ffmpeg.org/ffmpeg/trunk
* create a separate codec_id for E-AC-3Justin Ruggles2008-09-016-5/+19
| | | | Originally committed as revision 15143 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remaining parts of Nellymoser encoderBartlomiej Wolowiec2008-09-013-1/+223
| | | | Originally committed as revision 15138 to svn://svn.ffmpeg.org/ffmpeg/trunk