summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* indentationBaptiste Coudurier2008-02-25
| | | | Originally committed as revision 12202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless castsBaptiste Coudurier2008-02-25
| | | | Originally committed as revision 12201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticsBaptiste Coudurier2008-02-25
| | | | Originally committed as revision 12200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless tags, codec_get_id matches independently and qt uses lower ↵Baptiste Coudurier2008-02-25
| | | | | | case tags Originally committed as revision 12199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set bps to uncompressed original sound data for compressed audioBaptiste Coudurier2008-02-25
| | | | | | | according to aiff specs, qt set it to 16 for mace and ima4, fail if block align is not set. Originally committed as revision 12198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix duration for ima4Baptiste Coudurier2008-02-25
| | | | Originally committed as revision 12197 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ima4 in aiff supportBaptiste Coudurier2008-02-25
| | | | Originally committed as revision 12196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* png filtersLoren Merritt2008-02-25
| | | | Originally committed as revision 12195 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix outdated comment.Diego Biurrun2008-02-25
| | | | Originally committed as revision 26099 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* #include "libavutil/avutil.h" in swscale.hMåns Rullgård2008-02-25
| | | | Originally committed as revision 26097 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Install headers in $prefix/include/$libnameMåns Rullgård2008-02-25
| | | | | | | | | | Install each library's headers in $prefix/include/$libname. The installed headers use #include "lib*/*.h"; applications are expected to do the same. Specify only $prefix/include in .pc files. Originally committed as revision 12194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove a memcpyLoren Merritt2008-02-25
| | | | Originally committed as revision 12193 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Sort and prettyprint codec_wav_tags[].Diego Biurrun2008-02-24
| | | | Originally committed as revision 12192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix memory leaks in vp3 decoderMåns Rullgård2008-02-24
| | | | Originally committed as revision 12191 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set indexmem to a saner default.Michael Niedermayer2008-02-24
| | | | Originally committed as revision 12190 to svn://svn.ffmpeg.org/ffmpeg/trunk
* __asm __volatile -> asm volatile part 3Reimar Döffinger2008-02-24
| | | | Originally committed as revision 26091 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* __asm __volatile -> asm volatile part 2Reimar Döffinger2008-02-24
| | | | Originally committed as revision 12189 to svn://svn.ffmpeg.org/ffmpeg/trunk
* __asm __volatile -> asm volatile, improves code consistency and worksReimar Döffinger2008-02-24
| | | | | | (as far as that is possible) with the Sun C compiler. Originally committed as revision 12188 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix bug I introduced in r11962.Vitor Sessak2008-02-24
| | | | | | | Thanks to Uoti Urpala for spotting it and proposing the fix. Originally committed as revision 12187 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reduce initial fifo size, so as not to senselessly waste memory.Michael Niedermayer2008-02-24
| | | | Originally committed as revision 12186 to svn://svn.ffmpeg.org/ffmpeg/trunk
* realloc fifoMichael Niedermayer2008-02-24
| | | | Originally committed as revision 12185 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix issue357Michael Niedermayer2008-02-24
| | | | | | | | | | | | | | | | | Do what the spec says, insane or not: " Format 0 (uncompressed) and Format 3 (uncompressed little-endian) are similar. Both encode uncompressed audio samples. For 8-bit samples, the two formats are identical. For 16-bit samples, the two formats differ in byte ordering. In Format 0, 16-bit samples are encoded and decoded according to the native byte ordering of the platform on which the encoder and Flash Player, respectively, are running. In Format 3, 16-bit samples are always encoded in little-endian order (least significant byte first), and are byte-swapped if necessary in Flash Player before playback. Format 0 is clearly disadvantageous because it introduces a playback platform dependency. For 16-bit samples, Format 3 is highly preferable to Format 0 for SWF version 4 or later. " Originally committed as revision 12184 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flv/swf do not have a big endian codec id, they only supportMichael Niedermayer2008-02-24
| | | | | | little endian and native endian. Originally committed as revision 12183 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Riff ids for wmapro and wmavoice, this adds support for stream copy of these ↵Benjamin Larsson2008-02-23
| | | | | | codecs between asf,avi and wav containers. Originally committed as revision 12182 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use diff -u -w in codec regression testMåns Rullgård2008-02-23
| | | | Originally committed as revision 12181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* treat stream_type==0x82 as AUDIO_DTS when the program has a ↵Nico Sabbi2008-02-23
| | | | | | REGISTRATION_DESCRIPTOR with the value HDMV; approved by Mans Originally committed as revision 12180 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove apparently unneeded and buggy align.Michael Niedermayer2008-02-22
| | | | Originally committed as revision 12179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -lm to x264 check, it is needed on most systems.Diego Biurrun2008-02-22
| | | | | | taken from the DOS/DJGPP port by Michael Kostylev, mik niipt ru Originally committed as revision 12178 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleaner way of writing packed-byte constants.Loren Merritt2008-02-22
| | | | | | suggested by Uoti Urpala Originally committed as revision 12177 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Discard two symbols from libswscale.Carl Eugen Hoyos2008-02-22
| | | | Originally committed as revision 26060 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Ascii art to explain what avfilter_formats_changeref() does.Michael Niedermayer2008-02-21
| | | | Originally committed as revision 12176 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticMichael Niedermayer2008-02-21
| | | | Originally committed as revision 12175 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Better description (merge is too vague IMHO).Michael Niedermayer2008-02-21
| | | | Originally committed as revision 12174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Better description for merge_ref().Michael Niedermayer2008-02-21
| | | | Originally committed as revision 12173 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document avfilter_formats_ref() with some ascii art.Michael Niedermayer2008-02-21
| | | | Originally committed as revision 12172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* minor English correctionsMike Melanson2008-02-21
| | | | Originally committed as revision 12171 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typosMichael Niedermayer2008-02-21
| | | | Originally committed as revision 12170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Explain that libavcodec/i386/idct_mmx.c is GPLed.Diego Biurrun2008-02-21
| | | | Originally committed as revision 12169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* "General Tips" sectionMichael Niedermayer2008-02-21
| | | | Originally committed as revision 12168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* parse_number_or_die()Michael Niedermayer2008-02-21
| | | | | | Based on a patch by Stefano Sabatini. Originally committed as revision 12167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentLoren Merritt2008-02-21
| | | | Originally committed as revision 12166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pseudo-simd add_bytes and diff_bytesLoren Merritt2008-02-21
| | | | | | 2x faster than scalar in 32bit, 4x faster in 64bit (as opposed to 8x in mmx) Originally committed as revision 12165 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simd and unroll png_filter_rowLoren Merritt2008-02-21
| | | | | | | | | | | | cycles per 1000 pixels on core2: left: 9211->5170 top: 9283->2138 avg: 12215->7611 paeth: 64024->17360 overall rgb png decoding speed: +45% overall greyscale png decoding speed: +6% Originally committed as revision 12164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disabling all SSE* code for old gcc to avoid alignment issues.Michael Niedermayer2008-02-21
| | | | Originally committed as revision 12163 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert 12156Michael Niedermayer2008-02-20
| | | | | | | | | | Log: Make timestamp interpolation work with mpeg2 field pictures. Cleaner/simpler solutions are welcome. ---- A IMHO cleaner solution has been implemented. Originally committed as revision 12162 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Forgot this, which is needed for merging field pics too.Michael Niedermayer2008-02-20
| | | | Originally committed as revision 12161 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make find_frame_end() merge 2 mpeg2 field pictures. This should make mpeg2Michael Niedermayer2008-02-20
| | | | | | field pictures much more digestable. Originally committed as revision 12160 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: Correctly use preprocessor conditionals.Eddie Pang2008-02-20
| | | | | | patch by Eddie Pang, eddpang gmail com Originally committed as revision 12159 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix computation of the "NTP time" field in RTCP SR packets, and do notLuca Abeni2008-02-20
| | | | | | export times with microsecond precision Originally committed as revision 12158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of a fake timestamp discontinuity at the begin of V.VOB.Michael Niedermayer2008-02-20
| | | | | | | | This solution is not really correct but it is quite simple. Correct would be to do a second pass over the packets after all the headers have been collected. Originally committed as revision 12157 to svn://svn.ffmpeg.org/ffmpeg/trunk