summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().Lars Täuber2009-09-05
| | | | | | Patch by Lars Täuber <lars <dot> taeuber <at> gmx <dot> net>. Originally committed as revision 29650 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use memcpy to copy till end of line in one go instead of copying pixel by pixelReimar Döffinger2009-09-05
| | | | | | in xan_wc3_output_pixel_run and xan_wc3_copy_pixel_run Originally committed as revision 19774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic changes (indentation, doxygen comments, braces, put structures for ↵Ivan Schreter2009-09-05
| | | | | | API to header, ...) Originally committed as revision 19773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Slightly simplify detection of end of compressed data in xan_unpackReimar Döffinger2009-09-05
| | | | Originally committed as revision 19772 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make vp3 arrays static const where possible.Reimar Döffinger2009-09-05
| | | | Originally committed as revision 19771 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless ulti_decode_end function.Reimar Döffinger2009-09-05
| | | | Originally committed as revision 19770 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Search for ipmovie signature beyond the start of the file.Reimar Döffinger2009-09-05
| | | | | | | This allows to play directly files that combine player and movie into a single executable like http://samples.mplayerhq.hu/game-formats/interplay-mve/DES3S.EXE Originally committed as revision 19769 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend ipmovie signature to match exactly one place in mve files that have aReimar Döffinger2009-09-05
| | | | | | player binary prepended. Originally committed as revision 19768 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prettyprinting cosmeticsDiego Biurrun2009-09-05
| | | | Originally committed as revision 19767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix handling of packet loss when the output buffer is fullSascha Sommer2009-09-05
| | | | Originally committed as revision 19766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentSascha Sommer2009-09-05
| | | | Originally committed as revision 19765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove no longer needed debug outputSascha Sommer2009-09-05
| | | | Originally committed as revision 19764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reduce output buffer needsSascha Sommer2009-09-05
| | | | | | (fixes playback of some multichannel files) Originally committed as revision 19763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* store packet GetBitContext in the decoder contextSascha Sommer2009-09-05
| | | | Originally committed as revision 19762 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove fake Speex header creation from FLV demuxer. Having it there was not theJustin Ruggles2009-09-04
| | | | | | | correct solution to the problem. A better solution might be possible later once Speex is supported in muxers. Originally committed as revision 19761 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add frame_size as a codec parameter requirement for Speex inJustin Ruggles2009-09-04
| | | | | | | av_find_stream_info(). It forces decoding of a packet when there is no Speex header in order to determine the correct frame size. Originally committed as revision 19760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reduce pointless verbosity after seeks in the MP3 decoder.Diego Biurrun2009-09-04
| | | | Originally committed as revision 19759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a newline in error message in CHECKED_ALLOC(Z).Ramiro Polla2009-09-04
| | | | Originally committed as revision 19758 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Indent.Ramiro Polla2009-09-04
| | | | Originally committed as revision 19757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use if(0){} instead of #if 0 to prevent debug code to rot.Ramiro Polla2009-09-04
| | | | Originally committed as revision 19756 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libspeex: Do not set AVCodecContext.frame_size in decoder init if there is noJustin Ruggles2009-09-04
| | | | | | | header in extradata since the default value will be incorrect for multiple frames per packet. Originally committed as revision 19755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix check for x264Måns Rullgård2009-09-02
| | | | | | | | libx264 recently started mangling the name of x264_encoder_open() to prevent version mismatches, breaking our test. Checking for another function instead makes it work again. Originally committed as revision 19754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentation and other prettyprinting fixesDiego Biurrun2009-09-02
| | | | Originally committed as revision 19753 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add missing wmapro decoder partsSascha Sommer2009-09-02
| | | | Originally committed as revision 19752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmetics, prettyprintingDiego Biurrun2009-09-01
| | | | Originally committed as revision 19751 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update ffv1 codec long name in the documentation as well.Diego Biurrun2009-08-31
| | | | Originally committed as revision 19750 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use "FFmpeg video codec #1" instead of "FFmpeg codec #1" as codec long name.Lars Täuber2009-08-30
| | | | | | patch by Lars Täuber, lars.taeuber gmx net Originally committed as revision 19749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix incorrect display of ASF/WMV duration after r12926.Josh Harris2009-08-30
| | | | | | Patch by Josh Harris, qt tateu net Originally committed as revision 19748 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add function to compute ceil(log2(x)).Thilo Borgmann2009-08-30
| | | | | | Patch by Thilo Borgmann <thilo.borgmann _at_ googlemail.com> Originally committed as revision 19747 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert ZERO8x2 macro into inline functionKostya Shishkov2009-08-30
| | | | Originally committed as revision 19746 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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