summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Remove unused variable.Reimar Döffinger2009-08-30
| | | | Originally committed as revision 19745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Zeroing pic->motion_val in RV3/4 causes alignment problems on some 64-bitKostya Shishkov2009-08-30
| | | | | | | architectures since stride is multiple of 4 and not of 8, so split fill_rectangle() calls to operate on 32-bit words instead of 64-bit ones. Originally committed as revision 19744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Adjust r->avail_cache[] indexes to avoid alignment issues when zeroing blockKostya Shishkov2009-08-30
| | | | | | inside it. Originally committed as revision 19743 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Curly brackets cosmetics for previous commit.Ramiro Polla2009-08-29
| | | | Originally committed as revision 29587 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Check for return value of initFilter().Ramiro Polla2009-08-29
| | | | Originally committed as revision 29586 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Revert mistakenly commited hunk.Ramiro Polla2009-08-29
| | | | Originally committed as revision 29585 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale: Check for return values of malloc.Ramiro Polla2009-08-29
| | | | Originally committed as revision 29584 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add CHECKED_ALLOC macro.Ramiro Polla2009-08-29
| | | | | | | It works the same as CHECKED_ALLOCZ except that it does not zero the allocated memory. Originally committed as revision 19742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Store the frame size in the LibSpeexContext in case the header does not exist.Justin Ruggles2009-08-29
| | | | Originally committed as revision 19741 to svn://svn.ffmpeg.org/ffmpeg/trunk
* One declaration of mm_flags is enoughMåns Rullgård2009-08-29
| | | | Originally committed as revision 19740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move declarations of some mmx functions to dsputil_mmx.hMåns Rullgård2009-08-29
| | | | Originally committed as revision 19739 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move DECLARE_ALIGNED_8 definition next to DECLARE_ALIGNED_16Måns Rullgård2009-08-29
| | | | Originally committed as revision 19738 to svn://svn.ffmpeg.org/ffmpeg/trunk
* swscale-example: Free memory used by input data.Ramiro Polla2009-08-29
| | | | Originally committed as revision 29583 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Restore comment that was partially removed.Ramiro Polla2009-08-29
| | | | Originally committed as revision 29582 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make DECLARE_ALIGNED_8 align to 8 bytes, never to 16Måns Rullgård2009-08-28
| | | | | | | | | The DECLARE_ALIGNED_8 macro is defined to align to 16 bytes instead the 8 suggested by the name on some CPUs. None of the uses of this macro ever need 16-byte alignment, cases which once did having been changed to always specify 16 bytes explicitly. Originally committed as revision 19737 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the output data type to determine the maximum number of samples that can beJustin Ruggles2009-08-28
| | | | | | decoded. Originally committed as revision 19736 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add myself as maintainer for libspeexdec.cJustin Ruggles2009-08-28
| | | | Originally committed as revision 19735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Modify the Ogg/Speex demuxer and the libspeex decoder so that they always treatJustin Ruggles2009-08-28
| | | | | | a packet of Speex frames as a single frame. Originally committed as revision 19734 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Re-add search_for_ms to the coefficients encoders to silence warningsAlex Converse2009-08-27
| | | | Originally committed as revision 19733 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Formatting K&R fixesVitor Sessak2009-08-27
| | | | Originally committed as revision 19732 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark "i" parameter of vector_clipf_sse() as early-clobberVitor Sessak2009-08-27
| | | | Originally committed as revision 19731 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, revision 19728 added a bug that broke twinvq decoding. I forgot toVitor Sessak2009-08-27
| | | | | | multiply the buffer size by the number of channels. Originally committed as revision 19730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark parameter src of vector_clipf() as constVitor Sessak2009-08-27
| | | | Originally committed as revision 19729 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SSE optimized vector_clipf(). 10% faster TwinVQ decoding.Vitor Sessak2009-08-27
| | | | Originally committed as revision 19728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentLoren Merritt2009-08-27
| | | | Originally committed as revision 19727 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1.5x faster ff_vorbis_floor1_render_list, 5% faster vorbis decoding on Core2.Loren Merritt2009-08-27
| | | | | | | | | 1.3x and 3% on G4. Though I think only part of this speedup is due to my optimizations per se; some of it is that I got a better roll on the GCC random code generator. Trivial reorderings of this function have a disproportionate effect on speed. Originally committed as revision 19726 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmeticsDiego Biurrun2009-08-26
| | | | Originally committed as revision 19725 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless alignment from MpegEncContext.intra_scantableMåns Rullgård2009-08-26
| | | | | | | | | | The first member of struct ScanTable is a simple pointer, extra alignment of which serves no purpose. The alignment specifier was added along with some Altivec optimisations also adding a 16-byte-aligned array at the end of struct ScanTable. Presumably the redundant, outer alignment was added by mistake. The inner one is clearly sufficient. Originally committed as revision 19724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetic changes in read_seek* routines.Ivan Schreter2009-08-26
| | | | Originally committed as revision 19723 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Decoder for LPCM as used in Bluray discs.Christian Schmidt2009-08-26
| | | | | | Patch by Christian Schmidt, schmidt digadd de Originally committed as revision 19722 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix comments after switching from CABAC to range coder in r3658.Lars Täuber2009-08-26
| | | | | | Patch by Lars Täuber, lars D taeuber A gmx D net Originally committed as revision 19720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add decode_coeffs()Sascha Sommer2009-08-26
| | | | Originally committed as revision 19719 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge 2-channel M/S stereo decoding code with the multichannel versionSascha Sommer2009-08-26
| | | | Originally committed as revision 19718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 4xm: provide 16-byte alignment where requiredMåns Rullgård2009-08-26
| | | | Originally committed as revision 19717 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dsputil: declare some arrays 16-byte alignedMåns Rullgård2009-08-26
| | | | | | | These arrays are passed to functions for which we promise 16-byte alignment, so make sure we fulfil that promise. Originally committed as revision 19716 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some unnecessary alignment specifiersMåns Rullgård2009-08-26
| | | | | | None of these arrays are used in ways requiring extra alignment. Originally committed as revision 19715 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Always allocate a buffer of AVPALETTE_SIZE for palette in theStephen Backway2009-08-26
| | | | | | | | | | Bluray subtitle decoder instead of as small as possible. This avoids completely unnecessary issues with e.g. libswscale. (See r19673) Patch by Stephen Backway, stev391 A exemail D com D au Originally committed as revision 19714 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase maximum encoded subtitle size from 64 kB to 1 MB.Reimar Döffinger2009-08-26
| | | | | | | Fixes "dvd_subtitle too big" errors when encoding HD video subtitles to DVD format. Originally committed as revision 19713 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l typo, xsub encoder printed end time hours where minutes should have been.Reimar Döffinger2009-08-26
| | | | Originally committed as revision 19712 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, inv_zigzag_direct16 must be aligned to 16 bytes for dct_quantize_SSE2Reimar Döffinger2009-08-26
| | | | | | (which uses movdqa to xmm1 on inv_zigzag_direct16). Originally committed as revision 19711 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure that start_display_time is 0 by moving its value onto pts.Reimar Döffinger2009-08-26
| | | | | | If it was not 0, subtitle encoding would fail. Originally committed as revision 19710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for seek failures in avi_load_index, otherwise if the index offsetReimar Döffinger2009-08-26
| | | | | | | is invalid (e.g. truncated file) we might end up reading the whole file since trying to seek beyond the end of file does not set EOF. Originally committed as revision 19709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent.Reimar Döffinger2009-08-26
| | | | Originally committed as revision 19708 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove now dead code.Reimar Döffinger2009-08-26
| | | | Originally committed as revision 19707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply r19642 also pgssubdec:Reimar Döffinger2009-08-26
| | | | | | Make sure AVSubtitle is initialized, memset it to 0. Originally committed as revision 19706 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mdec: remove unused members from struct MDECContextMåns Rullgård2009-08-25
| | | | Originally committed as revision 19705 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit init to zero of static inv_zigzag_direct16Måns Rullgård2009-08-25
| | | | Originally committed as revision 19704 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmeticsDiego Biurrun2009-08-25
| | | | Originally committed as revision 19703 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return AVERROR(ENOMEM) if stream could not be allocatedBaptiste Coudurier2009-08-25
| | | | Originally committed as revision 19702 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check av_new_stream return value, patch by Kent Mein, mein at cs dot umn dot eduKent Mein2009-08-25
| | | | Originally committed as revision 19701 to svn://svn.ffmpeg.org/ffmpeg/trunk