summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* 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
* Do not guess the channel layout when getting its string value.Justin Ruggles2009-06-13
| | | | Originally committed as revision 19185 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: prepend TargetType to metadata key nameAurelien Jacobs2009-06-13
| | | | Originally committed as revision 19184 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the 3-front-channel layout from the list of channel layoutJustin Ruggles2009-06-13
| | | | | | aliases. Calling this "surround" is confusing and questionable. Originally committed as revision 19183 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct reading bits in MPC SV8 base codes (when we have to read 0 or >16 bits).Kostya Shishkov2009-06-13
| | | | Originally committed as revision 19182 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allocate a bit more memory for MPC SV8 seek table, so bitreader won't readKostya Shishkov2009-06-13
| | | | | | beyond allocated block. Originally committed as revision 19181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Analysis of logs show that there are in fact some files with m1v1 too (not ↵Jason Garrett-Glaser2009-06-13
| | | | | | | | just m2v2), which is documented to be MPEG-1 video. Adding fourcc to isom.c. Originally committed as revision 19180 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Electronic Arts demuxer: support Madcow video tagPeter Ross2009-06-13
| | | | Originally committed as revision 19179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Electronic Arts Madcow decoderPeter Ross2009-06-13
| | | | Originally committed as revision 19178 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Also accept TS as a prefix for wav twoccs (used by Flip4Mac) instead ofDavid Conrad2009-06-13
| | | | | | | | adding entries to codec_movaudio_tags. This ensures ADPCM_IMA_WAV uses the standard ms prefix when muxing to mov rather than TS. Originally committed as revision 19177 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add "0x11005354" as a fourcc for MOV audio; fixes audio detection in a ↵Jason Garrett-Glaser2009-06-13
| | | | | | | | problematic MOV file. The audio is actually adpcm_ima_wav. Originally committed as revision 19176 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Re-indent after last commitAlex Converse2009-06-12
| | | | Originally committed as revision 19175 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move TNS and swb_offset tables from aacdectab.h to aactab.c so that they can beAlex Converse2009-06-12
| | | | | | shared with the AAC encoder. Originally committed as revision 19174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not include libavcodec/internal.h in the ADTS muxer.Alex Converse2009-06-12
| | | | Originally committed as revision 19173 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add new FOURCC (0x0003) for raw DIB video, set flip flag accordingly.Jason Garrett-Glaser2009-06-12
| | | | | | Fixes a few AVI files from what is probably a mobile phone video camera. Originally committed as revision 19172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move run level decode functionality to ff_wma_run_level_decodeSascha Sommer2009-06-12
| | | | | | so that it can be reused for wmapro Originally committed as revision 19171 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Add brackets between if/elseSascha Sommer2009-06-12
| | | | Originally committed as revision 19170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add additional sample rates to the frame len bits calculation codeSascha Sommer2009-06-12
| | | | Originally committed as revision 19169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix placment of the DPCM Xan commentSascha Sommer2009-06-12
| | | | Originally committed as revision 19168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move frame len bits calculation to ff_wma_get_frame_len_bitsSascha Sommer2009-06-12
| | | | | | so that it can be reused for wmapro Originally committed as revision 19167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Associate the 0x6c75 TwoCC used in certain Kodak camerasJai Menon2009-06-12
| | | | | | | to the PCM Mu-law decoder. Fixes Issue 1178. Originally committed as revision 19166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Prettyprint and reformat wma.c closer to K&R style.Diego Biurrun2009-06-12
| | | | Originally committed as revision 19165 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fail and print correct error message when video stream pixel formatBaptiste Coudurier2009-06-12
| | | | | | is unknown. Originally committed as revision 19164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* DPX (Digital Picture Exchange) image decoderJimmy Christensen2009-06-12
| | | | | | patch by Jimmy Christensen, jimmy ghost dk Originally committed as revision 19163 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add sac3 to mp4 fourccs for mov+h264+aac-sac3+mp4s+ETERNAL_cut.mp4David Conrad2009-06-12
| | | | Originally committed as revision 19162 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add "m2v1" to fourccs for MPEG-2 video; fixes some MOV files.Jason Garrett-Glaser2009-06-12
| | | | Originally committed as revision 19161 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix cast of byte buffer to uint32 that was disregarding alignmentJeff Downs2009-06-12
| | | | | | | | | requirements. Now calculates crc byte at a time until aligned, then continues with uint32 optimized calculation. This fixes crashes during mlp decoding on sparc (at least, maybe others). Originally committed as revision 19160 to svn://svn.ffmpeg.org/ffmpeg/trunk