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
2007-08-16obfuscate urls and fix note about themBen Littler
Originally committed as revision 10124 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-16fix url typo pointed out by Guillaume LECERFBen Littler
Originally committed as revision 10123 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-16elaborate a little on AVStream.start_time, it seems the comment is not clearMichael Niedermayer
enough, not that the clearer NEVER comment in AVFormatContext.start_time stoped people from posting stupid patches Originally committed as revision 10122 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-16CONFIG_7REGS -> HAVE_7REGSRamiro Polla
Originally committed as revision 10121 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-15document the email interfaceMichael Niedermayer
Originally committed as revision 10120 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-15Make the Golomb decoder work for DiracMarco Gerards
Originally committed as revision 10119 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-15Statements like a = b = c = d = e; store from right-to-left, so ifAlexander Strange
you write them in the right order it comes out backwards. This removes them from fill_rectangle(). patch by Alexander Strange %astrange A ithinksw P com% Original thread: Date: Aug 14, 2007 5:36 AM Subject: [FFmpeg-devel] [PATCH] two small h264 optimizations Originally committed as revision 10118 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-14Try size 640x480 for FLC files which don't specify their size.Aurelien Jacobs
This is a ugly hack to fix playback of specular.flc. closes issue71 Originally committed as revision 10117 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-14Rename parse_arg_file function to opt_input_file for consistency.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 10116 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-14cosmetics: indentation fixDiego Biurrun
Originally committed as revision 10115 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-14remove broken movi_end skip-hack-checkMichael Niedermayer
this should fix seeking over the first riff chunk in odml Originally committed as revision 10114 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-14do not misuse movi_end for checking chunk sizesMichael Niedermayer
Originally committed as revision 10113 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-14Make cmdutils.c:parse_options accept as argument a function to parseStefano Sabatini
bare command line parameters. patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 10112 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-14Use AVERROR_PATCHWELCOME instead of AVERROR(ENOTSUP)Ramiro Polla
Originally committed as revision 10111 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-14Introduce AVERROR_PATCHWELCOMERamiro Polla
Originally committed as revision 10110 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-14Clarify LGPL and GPL licensing of FFmpeg.Diego Biurrun
Originally committed as revision 10109 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-14Attempt to better explain how to split patches into individualDiego Biurrun
self-contained pieces. Originally committed as revision 10108 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13Move msmpeg4 tables from a header file to msmpegdata.c.Diego Biurrun
Originally committed as revision 10107 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13Add attribute that forces alignment of stack to functions that need it.Ramiro Polla
Necessary for systems that don't align by default to 16 bytes, required by some SSE instructions. Requires GCC >= 4.2. Based on patch by Gaƫl Chardon. Originally committed as revision 10106 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13special handling for vp3 idct, use the c referenceMarc Hoffman
Originally committed as revision 10105 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13use bytestream_get_le*() this also fixes a big endian bugMichael Niedermayer
Originally committed as revision 10104 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13Make ffserver -h exit 0.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 10103 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13Make native and libnut NUT muxers mutually exclusive.Diego Biurrun
Originally committed as revision 10102 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13Support for WavPack version 0x410 (false stereo chunks)David Bryant
Patch by David Bryant printf("david@%s.com",wv_demuxer.long_name); Thread [PATCH] handle WavPack stream version 0x410 Originally committed as revision 10101 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13Rename flag for consistency with the next commitKostya Shishkov
Originally committed as revision 10100 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13Add av_get_bits_per_sample_format()David Conrad
Originally committed as revision 10099 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13Use PRId64 in seek testDavid Conrad
Originally committed as revision 10098 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13fix type 3 aka skipped blocks for old versionMichael Niedermayer
Originally committed as revision 10097 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13fix motion vectors for old versionMichael Niedermayer
Originally committed as revision 10096 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13set pix_fmt properly depending on versionMichael Niedermayer
Originally committed as revision 10095 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13use version instead of some random 32bit value to switch between 16 andMichael Niedermayer
32bit versions (this is more reliable, the old code failed on some files) Originally committed as revision 10094 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13replace vlc_type by version and set that from codec_tag which contains theMichael Niedermayer
4xm video version from the demuxer Originally committed as revision 10093 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13export 4xm video versionMichael Niedermayer
Originally committed as revision 10092 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12support ifr2 from Toy-Story2_better-image-quality.4xaMichael Niedermayer
Originally committed as revision 10091 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12use shorter types vec_"type" instead of the too long vector "type"Guillaume Poirier
part 1 of h264 luma interpolation 8x8 for altivec contributed by Mauricio Alvarez % lokifo A gmail P com % Original thread: Date: Jun 26, 2007 8:15 PM Subject: Re: [FFmpeg-devel] [PATCH] h264 luma interpolation 8x8 for altivec Originally committed as revision 10090 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12add second vlc tableMichael Niedermayer
pfr* of Toy-Story2_better-image-quality.4xa are decoded now without bitstream errors Originally committed as revision 10089 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12add support for old flac in oggMichael Niedermayer
fixes samples.mplayerhq.hu/flac/Yesterday.ogg closes issue73 Originally committed as revision 10088 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12restoring the alphabetical order (this time with case ignored)Roman Shaposhnik
Originally committed as revision 10087 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12Also check for closesocket in winsock2.hRamiro Polla
Originally committed as revision 10086 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12pass *fr2 chunks to decoder (Toy-Story2_better-image-quality.4xa contains them)Michael Niedermayer
Originally committed as revision 10085 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12Don't check the return value of decode_cabac_residual since it alwaysAlexander Strange
returns 0. This leads to a 0.4% speed-up. Patch by Alexander Strange astrange at_ ithinksw dot com Original thread: Date: Aug 11, 2007 11:44 PM Subject: [FFmpeg-devel] [PATCH] h264: don't check decode_cabac_residual return Originally committed as revision 10084 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12Ensure av_tree_insert() is defined before using it.Carl Eugen Hoyos
Patch by Carl Eugen Hoyos cehoyos _at_ ag.or.at Originally committed as revision 10083 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12more usage of av_clip()Aurelien Jacobs
Originally committed as revision 10082 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12one more simplificationAurelien Jacobs
Originally committed as revision 10081 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12various simplifications around recent av_clip_int16() usageAurelien Jacobs
Originally committed as revision 10080 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12fix decoding of samples.mplayerhq.hu/game-formats/idroq/demoEnd.roqMichael Niedermayer
closes issue78 Originally committed as revision 10079 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12use av_clip_int16() where it makes senseAurelien Jacobs
Originally committed as revision 10078 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12Set dts in tta demuxerDavid Conrad
Originally committed as revision 10077 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12add a new av_clip_int16() function to libavutilAurelien Jacobs
Originally committed as revision 10076 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12ensure av_noinline is always definedAurelien Jacobs
Originally committed as revision 10075 to svn://svn.ffmpeg.org/ffmpeg/trunk