aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
Commit message (Collapse)AuthorAgeFilesLines
* Enable coefficient scalingKostya Shishkov2006-07-071-22/+21
| | | | Originally committed as revision 5651 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't read out-of-bounds values.Kostya Shishkov2006-07-071-1/+2
| | | | Originally committed as revision 5650 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMåns Rullgård2006-07-061-2/+1
| | | | Originally committed as revision 5649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* build mpegaudio.c and ac3enc.c only if neededMåns Rullgård2006-07-061-1/+7
| | | | Originally committed as revision 5648 to svn://svn.ffmpeg.org/ffmpeg/trunk
* hopefully better for platforms not supporting misaligned readStefan Gehrer2006-07-061-1/+1
| | | | Originally committed as revision 5647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make use of 16x16 motion comp functions, 16x8 and 8x16 do not seem to be ↵Stefan Gehrer2006-07-061-8/+22
| | | | | | worth it Originally committed as revision 5646 to svn://svn.ffmpeg.org/ffmpeg/trunk
* increasing version for AVBitStreamFiltersMichael Niedermayer2006-07-061-2/+2
| | | | Originally committed as revision 5645 to svn://svn.ffmpeg.org/ffmpeg/trunk
* noise bitstream filterMichael Niedermayer2006-07-063-2/+34
| | | | | | add priv_data field to AVBitStreamFilterContext Originally committed as revision 5644 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVBitStreamFilter (some thingy which can modify the bitstream like add or ↵Michael Niedermayer2006-07-065-1/+134
| | | | | | remove global headers or change the headers or ...) Originally committed as revision 5643 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark some read-only datastructures as const.Stefan Huehner2006-07-063-14/+14
| | | | | | patch by Stefan Huehner, stefan & at & huehner & dot & org Originally committed as revision 5639 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix one case of choosing MV for chromaKostya Shishkov2006-07-061-5/+5
| | | | Originally committed as revision 5635 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling typoDiego Biurrun2006-07-051-1/+1
| | | | Originally committed as revision 5633 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use $(LIBOBJFLAGS) when compiling sparc/*.cMåns Rullgård2006-07-051-1/+1
| | | | Originally committed as revision 5630 to svn://svn.ffmpeg.org/ffmpeg/trunk
* #define SBUTTERFLY outside CONFIG_ENCODERSMåns Rullgård2006-07-051-5/+5
| | | | Originally committed as revision 5628 to svn://svn.ffmpeg.org/ffmpeg/trunk
* even more cbp safetyStefan Gehrer2006-07-051-13/+10
| | | | Originally committed as revision 5627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* missed removing this line in my last commitStefan Gehrer2006-07-051-1/+0
| | | | Originally committed as revision 5626 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Break overly long lines.Diego Biurrun2006-07-051-2/+4
| | | | Originally committed as revision 5622 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add rounding bias earlier in the idct, avoids many addsMichael Niedermayer2006-07-041-18/+20
| | | | Originally committed as revision 5618 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark read-only data as const. Patch by stefan huehner org.Stefan Huehner2006-07-041-34/+34
| | | | Originally committed as revision 5615 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return -1 on bitstream errors instead of continuing, as the following stuff ↵Michael Niedermayer2006-07-041-1/+1
| | | | | | almost always will be useless until the next startcode Originally committed as revision 5613 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify intra prediction mode decodingMichael Niedermayer2006-07-042-20/+10
| | | | Originally committed as revision 5612 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check cbp for validity, avoids possible out of array reads / segfaultsMichael Niedermayer2006-07-041-5/+21
| | | | Originally committed as revision 5611 to svn://svn.ffmpeg.org/ffmpeg/trunk
* minor simplificationnMichael Niedermayer2006-07-041-4/+2
| | | | Originally committed as revision 5610 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement intensity compensationKostya Shishkov2006-07-041-2/+42
| | | | Originally committed as revision 5609 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correctly choose global transform mode, MV mode and fix bitplane decodingKostya Shishkov2006-07-041-3/+9
| | | | Originally committed as revision 5608 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimizations suggested by Michael NiedermayerKostya Shishkov2006-07-041-53/+21
| | | | Originally committed as revision 5607 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup macroblock layer: merged decode of skipped MBsStefan Gehrer2006-07-031-52/+32
| | | | | | with non-skipped Originally committed as revision 5603 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic patch:Stefan Gehrer2006-07-032-36/+65
| | | | | | | Doxygen-style comments added some more comments Originally committed as revision 5602 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correctly detect when use hpel or qpel modeKostya Shishkov2006-07-031-1/+6
| | | | Originally committed as revision 5601 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 4-MV mode final fixes (now it works for non-exotic modes)Kostya Shishkov2006-07-031-5/+8
| | | | Originally committed as revision 5600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vc1_decode_intra_block() simplifications and correctionsKostya Shishkov2006-07-031-42/+19
| | | | Originally committed as revision 5599 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move REG_* macros from libavcodec/i386/mmx.h to libavutil/x86_cpu.hLuca Abeni2006-07-036-22/+4
| | | | Originally committed as revision 5595 to svn://svn.ffmpeg.org/ffmpeg/trunk
* porder patch by (Justin Ruggles jruggle a t earthlink d ot net)Justin Ruggles2006-07-031-20/+16
| | | | Originally committed as revision 5593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 4-MV decoding supportKostya Shishkov2006-07-031-81/+368
| | | | Originally committed as revision 5591 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CAVS decoder by (Stefan Gehrer stefan.gehrer gmx.de)Michael Niedermayer2006-07-039-166/+161
| | | | Originally committed as revision 5590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove redundant macro definitionsMåns Rullgård2006-07-021-6/+0
| | | | Originally committed as revision 5589 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill warningMåns Rullgård2006-07-021-0/+1
| | | | Originally committed as revision 5588 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CODEC_ID_CAVS (part of the cavs patch by Stefan Gehrer stefan.gehrer gmx de)Stefan Gehrer2006-07-021-0/+3
| | | | Originally committed as revision 5579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* staric frame_rate_tab -> non static ff_frame_rate_tab part of the cavs patch ↵Stefan Gehrer2006-07-022-9/+9
| | | | | | by (Stefan Gehrer stefan.gehrer gmx de) Originally committed as revision 5578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 3 lines while -> 1 line for loopMichael Niedermayer2006-07-021-3/+1
| | | | Originally committed as revision 5577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-07-021-8/+3
| | | | Originally committed as revision 5576 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify compute_autocorrMichael Niedermayer2006-07-021-22/+10
| | | | Originally committed as revision 5575 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont use memcpy for copying structsMichael Niedermayer2006-07-021-1/+1
| | | | Originally committed as revision 5574 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-07-021-50/+11
| | | | Originally committed as revision 5573 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flac-lpc patch by (Justin Ruggles jruggle earthlink net)Justin Ruggles2006-07-023-58/+618
| | | | | | tabs removed and regression.sh fixed (it was missing in the patch) by me Originally committed as revision 5572 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-07-021-7/+6
| | | | Originally committed as revision 5571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_fft_init now double checks that the system has mm3dnow.h beforeBenjamin Larsson2006-07-021-0/+4
| | | | | | | | checking if the cpu can do 3dnow at all. This bug caused amd cpu's without sse to not have a working fft function. Ie no wma, cook or vorbis decoder. Originally committed as revision 5570 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unneeded castsMåns Rullgård2006-07-021-5/+5
| | | | Originally committed as revision 5569 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of veccpy(), replace with simple assignmentMåns Rullgård2006-07-021-37/+33
| | | | Originally committed as revision 5568 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new files for the CAVS decoder by (Stefan Gehrer <stefan gehrer gmx de)Michael Niedermayer2006-07-014-0/+2769
| | | | Originally committed as revision 5567 to svn://svn.ffmpeg.org/ffmpeg/trunk