summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Move av_set_options_string() from libavfilter to libavutil.Stefano Sabatini2010-09-27
| | | | Originally committed as revision 25236 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use more expressive names for the avfilter_insert_filter() in and outStefano Sabatini2010-09-27
| | | | | | parameters. Originally committed as revision 25235 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use a Makefile in x86 subdirAurelien Jacobs2010-09-27
| | | | Originally committed as revision 25234 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge #if with if()Aurelien Jacobs2010-09-27
| | | | Originally committed as revision 25233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In dv decoder, set sample aspect aspect ratio, fix issue #1612Baptiste Coudurier2010-09-27
| | | | Originally committed as revision 25232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In dv decoder, use the expected aspect ratio logic, like other decoders do,Baptiste Coudurier2010-09-27
| | | | | | following width/height = par/dar. Originally committed as revision 25231 to svn://svn.ffmpeg.org/ffmpeg/trunk
* swscale: clear SWS_CPU_CAPS_SSE2 in update_flags_cpu() missed in r32068Janne Grunau2010-09-27
| | | | Originally committed as revision 32393 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* cosmetics: break long line update_flags_cpuJanne Grunau2010-09-27
| | | | Originally committed as revision 32392 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* use strict_std_complience from avcodec_opts[AVMEDIA_TYPE_*]Janne Grunau2010-09-27
| | | | | | | | Options are not yet set for video encoders and for codec specific defaults it is desireable to set the codec options only after the codec is known. Originally committed as revision 25230 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avfilter_insert_filter() propagate an error code in case theStefano Sabatini2010-09-27
| | | | | | called avfilter_link() fails. Originally committed as revision 25229 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add APIchanges entry after r25227.Stefano Sabatini2010-09-27
| | | | Originally committed as revision 25228 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVFilterLink store the pointers to the source and destinationStefano Sabatini2010-09-27
| | | | | | pads, rather than their index. Originally committed as revision 25227 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add APIchanges entry after r25225.Stefano Sabatini2010-09-27
| | | | Originally committed as revision 25226 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_get_token() from libavfilter to libavutil.Stefano Sabatini2010-09-27
| | | | Originally committed as revision 25225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpproto: Use a sockaddr_storage instead of a sockaddr_in with recvfromMartin Storsjö2010-09-27
| | | | Originally committed as revision 25224 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix several security issues in flicvideo.cMichael Niedermayer2010-09-27
| | | | | | This fixes CVE-2010-3429 Originally committed as revision 25223 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegtsenc: IndentTomas Härdin2010-09-27
| | | | Originally committed as revision 25222 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegtsenc: Write subtitle extradata if setTomas Härdin2010-09-27
| | | | Originally committed as revision 25221 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify include, since opt.c is now in libavutil there is no needStefano Sabatini2010-09-27
| | | | | | to use the library path prefix for eval.h. Originally committed as revision 25220 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: apply misc style fixes.Stefano Sabatini2010-09-27
| | | | Originally committed as revision 25219 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve error concealment of lost framesJason Garrett-Glaser2010-09-27
| | | | | | If a frame is lost, replace it with data from the previous valid frame. Originally committed as revision 25218 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avfilter_destroy() code less convoluted, introducing a temporaryStefano Sabatini2010-09-27
| | | | | | variable link. Originally committed as revision 25217 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump version and update APIchanges after r25210.Stefano Sabatini2010-09-27
| | | | Originally committed as revision 25216 to svn://svn.ffmpeg.org/ffmpeg/trunk
* yadif: remove unnecessary #includeMåns Rullgård2010-09-26
| | | | Originally committed as revision 25215 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port MPlayer blackframe filter.Stefano Sabatini2010-09-26
| | | | | | | | See thread: Subject: [FFmpeg-devel] [PATCH] Port MPlayer blackframe filter. Date: Sun, 26 Sep 2010 01:10:40 +0200 Originally committed as revision 25214 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: detect nasm vs yasm and set flags correspondinglyMåns Rullgård2010-09-26
| | | | Originally committed as revision 25213 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: change return type of AV_RN16() to unsignedMåns Rullgård2010-09-26
| | | | | | | This prevents gcc inserting useless UXTH instructions, at least in some cases. Originally committed as revision 25212 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix typos and grammarRamiro Polla2010-09-26
| | | | Originally committed as revision 32370 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make the avoptions list of sws more complete.Michael Niedermayer2010-09-26
| | | | Originally committed as revision 32369 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Split alloc and init of context so that parameters can be set in the contextMichael Niedermayer2010-09-26
| | | | | | | instead of requireing being passed through function parameters. This also makes sws work with AVOptions. Originally committed as revision 32368 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale: use full chroma input for point scalerRamiro Polla2010-09-26
| | | | Originally committed as revision 32360 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Bump minor version for the addition of the G.722 encoderMartin Storsjö2010-09-26
| | | | Originally committed as revision 25211 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move AVOptions from libavcodec to libavutilMichael Niedermayer2010-09-26
| | | | Originally committed as revision 25210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make WMV3 decoder attempt to decode WMVP as wellKostya Shishkov2010-09-26
| | | | Originally committed as revision 25209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RES_SM in WMV3 is really two flags, so split it in decoderKostya Shishkov2010-09-26
| | | | Originally committed as revision 25208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: fix style nits.Stefano Sabatini2010-09-26
| | | | Originally committed as revision 25207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add d suffix to movd target register to make it work with nasm.Reimar Döffinger2010-09-26
| | | | Originally committed as revision 25206 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split and then simplify address generation macro.Reimar Döffinger2010-09-26
| | | | | | Allows nasm to work for this code. Originally committed as revision 25205 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update rv20 seek test referenceMåns Rullgård2010-09-26
| | | | Originally committed as revision 25204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix rv20 encoding so the binary decoder can decode it.Michael Niedermayer2010-09-26
| | | | Originally committed as revision 25203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In yadif filter, use current frame when previous is missing,Baptiste Coudurier2010-09-26
| | | | | | better results for the first frame Originally committed as revision 25202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace deprecated CODEC_TYPE_AUDIO and CODEC_TYPE_VIDEO with theStefano Sabatini2010-09-25
| | | | | | corresponding AVMEDIA_TYPE_* symbols. Originally committed as revision 25201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Create libavfilter/$arch when building outside source treeMåns Rullgård2010-09-25
| | | | Originally committed as revision 25200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Stefanos port was missing DIRS variable in the Makefile for the newly added x86Michael Niedermayer2010-09-25
| | | | Originally committed as revision 25199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump lavfi minor and add Changelog notice after yadif addition.Stefano Sabatini2010-09-25
| | | | Originally committed as revision 25198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix 0 vs 1 porting bug from mplayer.Michael Niedermayer2010-09-25
| | | | Originally committed as revision 25197 to svn://svn.ffmpeg.org/ffmpeg/trunk
* yadif filter, based on stefanos port of my yadif from mplayer.Michael Niedermayer2010-09-25
| | | | | | Compared to stefanos, 2 frame output works with ffplay. Originally committed as revision 25196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support deinterlacing of YUVJ422P in old deinterlacer.Maksym Veremeyenko2010-09-25
| | | | | | Patch by Maksym Veremeyenko verem at m1stereo tv. Originally committed as revision 25195 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefix enum var_name symbols with VAR_, to avoid conflicts with alreadyStefano Sabatini2010-09-25
| | | | | | defined symbols, in particular should fix compilation in DOS. Originally committed as revision 25194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memleak introduced in:Stefano Sabatini2010-09-25
| | | | | | | | r25185 | stefano | 2010-09-25 03:18:43 +0200 (Sat, 25 Sep 2010) | 1 line Make the crop filters accept parametric expressions. Originally committed as revision 25193 to svn://svn.ffmpeg.org/ffmpeg/trunk