summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add asink_anullsink - null audio sink.S.N. Hemanth Meenakshisundaram2010-09-25
| | | | | | Patch by "S.N. Hemanth Meenakshisundaram" /smeenaks/ucsd/edu. Originally committed as revision 25189 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add asrc_anullsrc - null audio source.Stefano Sabatini2010-09-25
| | | | | | Based on a patch by "S.N. Hemanth Meenakshisundaram" smeenaks!ucsd!edu. Originally committed as revision 25188 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffprobe able to set AVFormatContext options.Stefano Sabatini2010-09-25
| | | | Originally committed as revision 25187 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add more missing checks in opt_default(), prevent a crash ifStefano Sabatini2010-09-25
| | | | | | avcodec_opts[0] or avformat_opts is not set. Originally committed as revision 25186 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the crop filters accept parametric expressions.Stefano Sabatini2010-09-25
| | | | Originally committed as revision 25185 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the syntax of the crop filter from x:y:w:h to w:h:x:y.Stefano Sabatini2010-09-24
| | | | | | | Slightly more intuitive and required by a pending changes for making the filter parametric. Originally committed as revision 25184 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vorbisenc: remove VLAsMåns Rullgård2010-09-24
| | | | Originally committed as revision 25183 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing uses of NULL_IF_CONFIG_SMALL for the filters descriptions.Stefano Sabatini2010-09-24
| | | | Originally committed as revision 25182 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing NULL checks, fix crash.Stefano Sabatini2010-09-24
| | | | Originally committed as revision 25181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an AVOption max_delay for AVFormatContext->max_delayMartin Storsjö2010-09-24
| | | | | | | | This can currently also be set via -muxdelay in ffmpeg for muxers, but not for demuxers (nor for demuxers in ffplay) - this patch allows it to be set in all those cases. Originally committed as revision 25180 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing existence checks in opt_default().Stefano Sabatini2010-09-24
| | | | Originally committed as revision 25179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2010-09-24
| | | | Originally committed as revision 25178 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetic (rename detect_repeats to is_atty which matches the truth)Michael Niedermayer2010-09-24
| | | | Originally committed as revision 25177 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxy consistency cosmeticsMichael Niedermayer2010-09-24
| | | | Originally committed as revision 25176 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable AV_LOG_SKIP_REPEATED to maintain previous behavior.Michael Niedermayer2010-09-24
| | | | Originally committed as revision 25175 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 2nd try to fix av_log() repeated detectionMichael Niedermayer2010-09-24
| | | | Originally committed as revision 25174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable.Ronald S. Bultje2010-09-24
| | | | Originally committed as revision 25173 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unroll loop in h264_idct_add16intra_sse2(). Basically identical to r25171, thisRonald S. Bultje2010-09-24
| | | | | | | | inlines scan8[] and removes loop setup. 15% faster, 0.4% overall. See "[PATCH] unroll loop in h264_idct_add8_sse2()" thread on ML. Originally committed as revision 25172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unroll loop in h264_idct_add8_sse2(). This means we can inline scan8[] in theRonald S. Bultje2010-09-24
| | | | | | | | code directly also and remove loop setup. 20% faster in function, 0.8% overall. See "[PATCH] unroll loop in h264_idct_add8_sse2()" thread on ML. Originally committed as revision 25171 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update docs regarding writing optimizations:Ronald S. Bultje2010-09-24
| | | | | | | | | | | - mention clobber-marking of xmm registers, - some notes on external vs. inline asm, including tips on which to use for what situation and to not rewrite+improve in the same patch (as with C code) - some more best-practice guidelines See "[PATCH] update doc/optimization.txt" thread on ML. Originally committed as revision 25170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary av_strdup() and av_free().Stefano Sabatini2010-09-24
| | | | Originally committed as revision 25169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update doc/APIchanges after the last API changes.Stefano Sabatini2010-09-24
| | | | Originally committed as revision 25168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffplay -h show the settable AVOptions.Stefano Sabatini2010-09-24
| | | | Originally committed as revision 25167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate av_opt_show() in favor of a new function av_opt_show2(),Stefano Sabatini2010-09-24
| | | | | | which allows to specify only a subset of all the options to show. Originally committed as revision 25166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add frei0r filter.Stefano Sabatini2010-09-24
| | | | | | | | See thread: Subject: [FFmpeg-devel] [POC] frei0r wrapper Date: Tue, 24 Aug 2010 21:37:32 +0200 Originally committed as revision 25165 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a G.722 encoderMartin Storsjö2010-09-23
| | | | Originally committed as revision 25164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rawdec: only allocate a full-frame size buffer if it actually willReimar Döffinger2010-09-23
| | | | | | be used, place palette buffer in the context to simplify this. Originally committed as revision 25163 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct terminology bug in poll_frame()Michael Niedermayer2010-09-23
| | | | | | it returns the number of samples not frames (for video sample=frame) Originally committed as revision 25162 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fate: print commands being executed with V=1Måns Rullgård2010-09-23
| | | | Originally committed as revision 25161 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation after r25158.Carl Eugen Hoyos2010-09-23
| | | | Originally committed as revision 25160 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow to set the frame rate in v4l2 devicesJosé Miguel Gonçalves2010-09-23
| | | | | | Patch by José Miguel Gonçalves (jose DOT goncalves AT inov DOT pt) Originally committed as revision 25159 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix aspect ratio for files that have it stored inRichard Buteau2010-09-23
| | | | | | | | | ff_asf_extended_content_header. Fixes issue 690. Patch by Richard Buteau, rbuteau rgbnetworks com Originally committed as revision 25158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo (instruciton -> instruction).Ronald S. Bultje2010-09-22
| | | | Originally committed as revision 25157 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The debug text output of macroblocks can indicate MB_TYPE_INTERLACED,Ivan Kalvachev2010-09-21
| | | | | | | but it used to do it only for h264 codec. Allow it for other codecs, as mpeg2 and mpeg4 also set this flag. Originally committed as revision 25156 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Place concat protocol entry in alphabetical order.Diego Biurrun2010-09-21
| | | | Originally committed as revision 25155 to svn://svn.ffmpeg.org/ffmpeg/trunk
* tcp: Check both wfds and efds when waiting for the result from connectMartin Storsjö2010-09-21
| | | | | | | | On windows, a connection failure doesn't trigger wfds as it does on unix. This fixes issue 2237, based on code by yeyingxian. Originally committed as revision 25154 to svn://svn.ffmpeg.org/ffmpeg/trunk
* x86: disable SSE functions using stack when stack is not alignedMåns Rullgård2010-09-21
| | | | | | This fixes crashes with ICC 10.1. Originally committed as revision 25153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable ALIGNED_STACK with icc 10 or prior on x86_32Måns Rullgård2010-09-21
| | | | Originally committed as revision 25152 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add HAVE_ALIGNED_STACK config settingMåns Rullgård2010-09-21
| | | | | | | This is set to 1 if the stack is guaranteed to be suitably aligned for the strictest access mode of the machine. Originally committed as revision 25151 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: disable movw/movt for relocated values on Apple platformsMåns Rullgård2010-09-20
| | | | | | | Apparently Apple platforms do not handle movw/movt relocations properly, leading to runtime crashes in code using them. Originally committed as revision 25150 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move log_callback_help to cmdutils.[hc], for allowing sharing.Stefano Sabatini2010-09-20
| | | | Originally committed as revision 25149 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support deinterlacing of YUVJ420P.Benjamin Larsson2010-09-20
| | | | Originally committed as revision 25148 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for the IPPROTO_IPV6 define before using itMartin Storsjö2010-09-20
| | | | | | | This fixes building on FreeBSD in some configurations, if the IPv6 multicast structs are available, but IPPROTO_IPV6 isn't defined. Originally committed as revision 25147 to svn://svn.ffmpeg.org/ffmpeg/trunk
* x86: remove hack disabling sse2 h264 loop filter with 32-bit iccMåns Rullgård2010-09-18
| | | | Originally committed as revision 25146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Request 16-byte aligned stack with icc on x86_32Måns Rullgård2010-09-18
| | | | Originally committed as revision 25145 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: error in last commit. use decoder channels not encoder channels.Justin Ruggles2010-09-18
| | | | Originally committed as revision 25144 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change remaining ost->st->codec and ist->st->codec to enc and dec inJustin Ruggles2010-09-18
| | | | | | do_audio_out(). Originally committed as revision 25143 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove legacy x264 presetsLou Logan2010-09-17
| | | | | | | | | Since we now have the official x264 presets in ffmpeg, there's no reason to keep around the old ones. Patch by Lou Logan <lou AT fakeoutdoorsman DOT com>. Originally committed as revision 25142 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove pointless semicolonVitor Sessak2010-09-17
| | | | Originally committed as revision 25141 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't access upper 32 bits of a 32-bit int on 64-bit systems.Ronald S. Bultje2010-09-17
| | | | Originally committed as revision 25140 to svn://svn.ffmpeg.org/ffmpeg/trunk