summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Simplify run level decoding:Sascha Sommer2009-06-20
| | | | | | | | | | - remove unneeded vlc code < 0 check - reorder vlc code handling so that the unlikely escape decoding part comes last - move overflow check out of the decode loop - branchless sign conversion Originally committed as revision 19234 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation after the previous commitSascha Sommer2009-06-20
| | | | Originally committed as revision 19233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for escape coded wmapro run level coefficientsSascha Sommer2009-06-20
| | | | Originally committed as revision 19232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce WMACoef typedef for decoded coefficientsSascha Sommer2009-06-20
| | | | | | | and change default type to float so that the run level decoding functionality can be shared with wmapro Originally committed as revision 19231 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print meaningful error messages when url_fopen fails.Jai Menon2009-06-20
| | | | Originally committed as revision 19230 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add 0-termination in table, patch by Wolfram Gloger, wmglo at dent dot med ↵Wolfram Gloger2009-06-20
| | | | | | dot uni-muenchen dot de Originally committed as revision 19229 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix dvcprohd 720p channels 3 and 4 audio timestamps, patch by Brian Brice, ↵Brian Brice2009-06-19
| | | | | | bbrice at gmail dot com Originally committed as revision 19228 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable network support if required headers cannot be found.Michael Kostylev2009-06-19
| | | | | | patch by Michael Kostylev, michael.kostylev gmail com Originally committed as revision 19227 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support varying frame sizes in a single file.Eric Buehl2009-06-19
| | | | | | patch by Eric Buehl, eric.buehl gmail com Originally committed as revision 19226 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for id3 tag parsing for ADTS AAC streamsPatrick Dehne2009-06-19
| | | | | | Patch by Patrick Dehne ( patrick mysonicweb com ) Originally committed as revision 19225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move id3v1/id3v2 handling code from mp3.c to id3v[12].c.Patrick Dehne2009-06-19
| | | | | | patch by Patrick Dehne, patrick mysonicweb com Originally committed as revision 19224 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for muxing XSUB subtitles to AVI muxer.Reimar Döffinger2009-06-19
| | | | Originally committed as revision 19223 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for encoding XSUB subtitles. Muxing support is still missing.Reimar Döffinger2009-06-19
| | | | | | Based on code by DivX, Inc., heavily changed by Björn Axelsson [gecko acc.umu.se] and me. Originally committed as revision 19222 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add pts field to AVSubtitle, for use by future XSUB encoder (and XSUB decoderReimar Döffinger2009-06-19
| | | | | | should use it, too). Originally committed as revision 19221 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename tests/ffmpeg.regression.ref to tests/vsynth.regression.ref,Stefano Sabatini2009-06-18
| | | | | | since that is the name of the corresponding test. Originally committed as revision 19220 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add fourcc 0x10000004, seems to actually be MPEG4. Fixes a problematic AVI ↵Jason Garrett-Glaser2009-06-18
| | | | | | file. Originally committed as revision 19219 to svn://svn.ffmpeg.org/ffmpeg/trunk
* G.729 decoding routine (skeleton, including parameters decoding).Vladimir Voroshilov2009-06-18
| | | | Originally committed as revision 19218 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print why av_find_stream_info() failed, this is a rather common questionMichael Niedermayer2009-06-18
| | | | | | during debugging ... Originally committed as revision 19217 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: slightly faster NEON H264 horizontal loop filterMåns Rullgård2009-06-17
| | | | Originally committed as revision 19216 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set restrictions on packet_size, as per ISO-11172 / H-222 specificationsRonald S. Bultje2009-06-17
| | | | | | | | | (max packet size should fit in 13 bits as a kB value, so 1<<23, plus the header which is 10 bytes), and as per mpegenc.c internal assumptions (min packet size is 20 bytes). See "[PATCH] make packet_size in AVFormatContext unsigned" thread. Originally committed as revision 19215 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not call rgb2rgbWrapper() for rgb48*, there is no special converterVitor Sessak2009-06-17
| | | | | | yet for those formats Originally committed as revision 29371 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove a test on an always false condition.Benoit Fouet2009-06-17
| | | | Originally committed as revision 19214 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VC-1/WMV: Remove redundant ff_init_block_index() calls.Jason Garrett-Glaser2009-06-17
| | | | | | | These are only supposed to be called once per row, not once per macroblock. ~1.5% faster according to oprofile. Originally committed as revision 19213 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add '.mp1' for MP1 audio in MOV/CAF.Alexander Strange2009-06-17
| | | | | | Tested with streamcopy of 'mp1-sample.mp1' in incoming. Originally committed as revision 19212 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ".mp2" as a fourcc for mp2 audio in MOV. Fixes a problematic MOV file.Jason Garrett-Glaser2009-06-16
| | | | Originally committed as revision 19211 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Downgrade message log level (from AV_LOG_ERROR to AV_LOG_DEBUG) aboutArt Clarke2009-06-16
| | | | | | | | skipped metadata packet in FLV demuxer. Patch by Art Clarke a${surname} At xuggle - com. Originally committed as revision 19210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move opt_loglevel() from ffmpeg.c to cmdutils.c.Stefano Sabatini2009-06-16
| | | | Originally committed as revision 19209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffmpeg able to set the loglevel option using stringsRamiro Polla2009-06-16
| | | | | | | | corresponding to the various log levels. Patch by Ramiro. Originally committed as revision 19208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* H.264: Fix memory leaks with multithreading.Alexander Strange2009-06-16
| | | | | | | | | The threads' contexts and rbsp_buffers were not freed at the end of decoding. Fixes issue 1581 Originally committed as revision 19207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SSE version of clear_blocksJason Garrett-Glaser2009-06-16
| | | | Originally committed as revision 19206 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VC-1/WMV3 decoding: don't clear blocks unless they're actually used.Jason Garrett-Glaser2009-06-16
| | | | | | | | ~8% faster VC-1 decoding. Possible future optimization: clear blocks after use instead of before, and for DC-only blocks, only clear the DC coefficient. Originally committed as revision 19205 to svn://svn.ffmpeg.org/ffmpeg/trunk
* idct_dc for VC-1/WMV3 decoder; ~11% faster decoding overall.Jason Garrett-Glaser2009-06-16
| | | | | | | | | Includes mmx2 asm for the various functions. Note that the actual idct still does not have an x86 SIMD implemtation. For wmv3 files using regular idct, the decoder just falls back to simple_idct, since simple_idct_dc doesn't exist (yet). Originally committed as revision 19204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo in vc1.c, make capitalization in warning/error messages more ↵Jason Garrett-Glaser2009-06-16
| | | | | | consistent. Originally committed as revision 19203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add "config" make target to rerun configure with old optionsMåns Rullgård2009-06-15
| | | | Originally committed as revision 19202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: properly quote configure options stored in config.*Måns Rullgård2009-06-15
| | | | Originally committed as revision 19201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix unaligned accesses by doing bytewise access until aligned, thenRamiro Polla2009-06-15
| | | | | | | | continuing in 32-bit quantities. Fixes crash observed on sparc during FATE mlp test. Patch by Ramiro. Originally committed as revision 19200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The AAC demuxer now depends on id3v1.o.Patrick Dehne2009-06-15
| | | | | | patch by Patrick Dehne, patrick mysonicweb com Originally committed as revision 19199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check atom size against edit_count to avoid very long loopBaptiste Coudurier2009-06-15
| | | | Originally committed as revision 19198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix probing and demuxing of pond.dv, issue #887Baptiste Coudurier2009-06-15
| | | | Originally committed as revision 19197 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not use av_parser_change for h264 which uses bitstream filter, fix #1027Baptiste Coudurier2009-06-14
| | | | Originally committed as revision 19196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* regtest: print commands also for image format testsMåns Rullgård2009-06-14
| | | | Originally committed as revision 19195 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print error message when output buffer allocation failsMåns Rullgård2009-06-14
| | | | Originally committed as revision 19194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print error when dv frame profile cannot be foundBaptiste Coudurier2009-06-14
| | | | Originally committed as revision 19193 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check if frame size matches old sys and assumes corrupted input, fixes #1192Baptiste Coudurier2009-06-14
| | | | Originally committed as revision 19192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge FreeBSD and DragonFlyBSD OS detection sections.Diego Biurrun2009-06-14
| | | | | | Apparently DragonFlyBSD does not need memalign either. Originally committed as revision 19191 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add DragonFlyBSD to the list of supported OSes.Adam Hoka2009-06-14
| | | | | | patch by Adam Hoka, ahoka NetBSD org Originally committed as revision 19190 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Initialise MAD decode_block_intra() loop iterator to zero.Peter Ross2009-06-14
| | | | Originally committed as revision 19189 to svn://svn.ffmpeg.org/ffmpeg/trunk
* G.729 decoder initialization routine (skeleton)Vladimir Voroshilov2009-06-14
| | | | Originally committed as revision 19188 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace MAX_SUBFRAME_SIZE and ctx->subframe_size with SUBFRAME_SIZE,Vladimir Voroshilov2009-06-14
| | | | | | since subframe length is the same in all G.729 modes. Originally committed as revision 19187 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a VorbisComment metadata conversion table and use it in the FLAC andJustin Ruggles2009-06-13
| | | | | | Ogg demuxers. Originally committed as revision 19186 to svn://svn.ffmpeg.org/ffmpeg/trunk