Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-09-30Return an error when the parsed mpc chunk size is negative, otherwise weReimar Döffinger
might end up in an endless loop where the same chunk is parsed over and over. Fixes a hang near the end for http://samples.mplayerhq.hu/A-codecs/musepack/sv8/sv8-tags.mpc Originally committed as revision 20099 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-30Fix compilation of beosaudio.cpp, not tested if it actually works though.Reimar Döffinger
Originally committed as revision 20098 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-30Fix typo in comment.Reimar Döffinger
Originally committed as revision 20097 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-30Use skip_put_bytes in MJPEG encoder instead of filling all bytes with 0Reimar Döffinger
with put_bits. Originally committed as revision 20096 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-30Use ff_put_string in vorbis encoder.Reimar Döffinger
Originally committed as revision 20095 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-30Replace several #ifdef PIC with the more obvious and correctReimar Döffinger
#if !HAVE_EBX_AVAILABLE, since all it does is avoid using ebx. Originally committed as revision 20094 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-30Disable parsing for ogg streams where no ogg header was found,Reimar Döffinger
if no header was found the parser was not initialized and thus will crash when trying to use it. Originally committed as revision 20093 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-30Convert latin1 codec_name in mov to UTF-8, since all strings in FFmpegReimar Döffinger
must be valid UTF-8. Originally committed as revision 20092 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-30When BitsPerSample tag is not present in TIFF, that means file isKostya Shishkov
monochrome, so initialize picture before decoding. This fixes decoding monochrome files produced by lavc TIFF encoder. Originally committed as revision 20091 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-30Simplify stereo rematrixing by only using one temporary variable. It is alsoJustin Ruggles
about 1.8% faster on my system. Originally committed as revision 20090 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-30remove unneeded assignment in inner loop. rematrixing bands are contiguous.Justin Ruggles
Originally committed as revision 20089 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-30Prefer -vcodec rawvideo over -vcodec huffyuv for lavfi regressionStefano Sabatini
tests, as the use of huffyuv may cause the auto-insertion of a scale filter, thus masking the mis-behavior of some filter. Originally committed as revision 20088 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-30Remove disabled code cruft.Diego Biurrun
Originally committed as revision 20087 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29Fix md5 program invocation for BSD.Michael Kostylev
patch by Michael Kostylev, michael.kostylev gmail com Originally committed as revision 20086 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29Use context instead of NULL for logging.Reimar Döffinger
Originally committed as revision 20085 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29Make sure that dv encoder initializes all encoded packet data.Reimar Döffinger
The specification does not say which value to use for unused parts, so fill all unused bytes with 0xff, which is consistent with what DV usually uses for reserved or unused parts. Originally committed as revision 20084 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29cosmetics: K&R coding style, prettyprintingDiego Biurrun
Originally committed as revision 20083 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29Fix indentation in avcodec.hJason Garrett-Glaser
Originally committed as revision 20082 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29WMA: fix loop unrolling in decode_exp_vlc()Måns Rullgård
The count can be a non-multiple of 4 after all. Originally committed as revision 20081 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29whitespace cosmetics, prettyprinting, K&R coding styleDiego Biurrun
Originally committed as revision 20080 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29Simplify r20025: use align_get_bits instead of reimplementing it.Reimar Döffinger
Originally committed as revision 20079 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29WMA: store level_table as floats, use type punning for sign flip in decodeMåns Rullgård
Originally committed as revision 20078 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29WMA: use type punning and unroll loops in decode_exp_vlc()Måns Rullgård
GCC does stupid things if these assignments are done using floats directly, so fill the runs using integer operations instead. Also unroll the loops since the length is always a multiple of 4. Originally committed as revision 20077 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29WMA: use a table instead of pow() in decode_exp_vlcMåns Rullgård
Originally committed as revision 20076 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29Sync AC3 probe values with MP3 probe values, they have to avoid similar issues.Reimar Döffinger
This fixes ffmpeg-generated files with -acodec ac3 being detected as raw ac3 instead of MPEG. Originally committed as revision 20075 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29Extend DV autodetection to also reliably detect single-frame DVs withReimar Döffinger
a higher score that MAX/4. It checks that there are at least 10 DIF headers and at least one per 24000 bytes, and if so considers the file reliably detected as DV. Passes probetest, too. Originally committed as revision 20074 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29Add id3v2 metadata conversion table and use it in mp3 muxer.Anton Khirnov
Patch by Anton Khirnov, wyskas gmail Originally committed as revision 20073 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29Make sure all the bits are written to output in fax data decoder.Kostya Shishkov
This fixes decoding TIFF images with fax compression and width being not multiple of eight (and issue 1429). Originally committed as revision 20072 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29some more linebreak and brace placement cosmeticsDiego Biurrun
Originally committed as revision 20071 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29brace placement and linebreak cosmeticsDiego Biurrun
Originally committed as revision 20070 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-28Refactor channel element configuration and mapping code into its own functionRobert Swain
to allow reuse Originally committed as revision 20069 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-28Reindent after last commitRobert Swain
Originally committed as revision 20068 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-28AAC: Add channel layout support for channel configuration as defined in theRobert Swain
specification Originally committed as revision 20067 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-28cosmetics: reindent and reformat function declarationsKostya Shishkov
Originally committed as revision 20066 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-28Finally distinguish TIFF_CCITT_RLE and TIFF_G3 1-D case, so both of themKostya Shishkov
will be decoded correctly. This fixes issue 1423. Originally committed as revision 20065 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-28Make TIFF decoder load compression options only for corresponding codecKostya Shishkov
Originally committed as revision 20064 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27ARM: NEON optimised vector_fmul_addMåns Rullgård
Originally committed as revision 20063 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27cosmetics: fix indentation after previous commitMåns Rullgård
Originally committed as revision 20062 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27Drop unused args from vector_fmul_add_add, simpify code, and renameMåns Rullgård
The src3 and step arguments to vector_fmul_add_add() are always zero and one, respectively. This removes these arguments from the function, simplifies the code accordingly, and renames the function to better match the new operation. Originally committed as revision 20061 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27Remove duplicated / stray code which slipped in with r20057.Stefano Sabatini
Originally committed as revision 20060 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27Get rid of "function" "keywords" in lavfilter testing code, hopefully willReimar Döffinger
make regressions tests runnable again with all shells. Originally committed as revision 20059 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27Do not compile ZLib data uncompressing function in TIFF decoder when ZLib isMartin Storsjö
not present. Patch by Martin Storsjö ($firstname <at> $firstname <dot> two first letters of $lastname) Originally committed as revision 20058 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27Implement a lavfitest target for testing regressions in libavfilter.Stefano Sabatini
The target is disabled. See the thread: "[PATCH] libavfilter-soc: regression test for libavfilter". Originally committed as revision 20057 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27WMAPRO: use vector_fmul_scalar from dsputil where possibleMåns Rullgård
Originally committed as revision 20056 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27Rearrange loop structure for approx. 35-50% faster calc_transform_coeffs_cpl()Justin Ruggles
depending on content. Originally committed as revision 20055 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,Kostya Shishkov
so replace it with custom code. This fixes issue 1419. Originally committed as revision 20054 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27Move variable declaration to inside of loop.Justin Ruggles
Originally committed as revision 20053 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27Cosmetics: Rename some variables.Justin Ruggles
Originally committed as revision 20052 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27Simplify coupling band loop.Justin Ruggles
Originally committed as revision 20051 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27Remove unneeded table lookup.Justin Ruggles
Originally committed as revision 20050 to svn://svn.ffmpeg.org/ffmpeg/trunk