summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add av_stristr() functionMåns Rullgård2010-03-06
| | | | | | This is a case-insensitive version of strstr(). Originally committed as revision 22251 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix build with compilers using a separate dependency commandMåns Rullgård2010-03-06
| | | | Originally committed as revision 22249 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after the last commit.Stefano Sabatini2010-03-06
| | | | Originally committed as revision 22248 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_get_pict_type_char() in debug code within output_picture2(),Stefano Sabatini2010-03-06
| | | | | | simplify. Originally committed as revision 22247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix install with shared libs on weird systemsMåns Rullgård2010-03-06
| | | | Originally committed as revision 22246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix make installMåns Rullgård2010-03-06
| | | | Originally committed as revision 22245 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prettify make outputMåns Rullgård2010-03-06
| | | | | | | This gives brief messages from make by default. For full command echoing, add V=1 to make command line. Originally committed as revision 22244 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split install-headers target and simplify rulesMåns Rullgård2010-03-06
| | | | Originally committed as revision 22243 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add INSTALL makefile variableMåns Rullgård2010-03-06
| | | | Originally committed as revision 22242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use mkdir -p to create directoriesMåns Rullgård2010-03-06
| | | | Originally committed as revision 22241 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add CP make variableMåns Rullgård2010-03-06
| | | | Originally committed as revision 22240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add YASMDEP variable; use for deps on yasm filesMåns Rullgård2010-03-06
| | | | Originally committed as revision 22239 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix last frame block size correction.Thilo Borgmann2010-03-06
| | | | Originally committed as revision 22238 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bink version 'h' also has chroma planes swappedKostya Shishkov2010-03-06
| | | | Originally committed as revision 22236 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move FFT parts from dsputil.h to fft.hMåns Rullgård2010-03-06
| | | | Originally committed as revision 22235 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use $(RM) to delete filesMåns Rullgård2010-03-06
| | | | Originally committed as revision 22234 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove DECLARE_ALIGNED_{8,16} macrosMåns Rullgård2010-03-06
| | | | | | | These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead. Originally committed as revision 22233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make opt_default() look for options in sws_opts only if sws_opts isStefano Sabatini2010-03-06
| | | | | | defined, fix crash. Originally committed as revision 22232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support to input devices in ffprobe.Stefano Sabatini2010-03-06
| | | | | | | | See the thread: Subject: [FFmpeg-devel] [PATCH] Add support to input device to ffprobe Date: Sun, 21 Feb 2010 14:57:44 +0100 Originally committed as revision 22231 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move DECLARE_ALIGNED_{8,16} macros to mem.hMåns Rullgård2010-03-06
| | | | | | | These macros naturally belong next to the generic DECLARE_ALIGNED macro. Originally committed as revision 22230 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid duplication of usePal() macro.Stefano Sabatini2010-03-06
| | | | Originally committed as revision 30856 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add support to BGR444/RGB444 foreign endian output in libswscale.Janusz Krzysztofik2010-03-06
| | | | | | Patch by Janusz Krzysztofik |jkrzyszt ^ tis icnet pl|. Originally committed as revision 30855 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove apparently unneeded define and includes.Michael Niedermayer2010-03-06
| | | | Originally committed as revision 22229 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make trasher use a well defined random number generator and allow the seed ↵Michael Niedermayer2010-03-06
| | | | | | to be specified on the cmd line. Originally committed as revision 22228 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't explicitly initialize networking in the tcp and udp protocolsMartin Storsjö2010-03-05
| | | | | | Networking is always initialized when opening protocols. Originally committed as revision 22227 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use ff_url_join for assembling URLs, instead of snprintfMartin Storsjö2010-03-05
| | | | | | | | | This ensures proper escaping of numerical IPv6 addresses. The RTSP (de)muxer needs its own network initialization, since it isn't a protocol and url_open hasn't been called yet. Originally committed as revision 22226 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a function ff_url_join for assembling URLsMartin Storsjö2010-03-05
| | | | Originally committed as revision 22225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Always call ff_network_init/ff_network_close when opening protocolsMartin Storsjö2010-03-05
| | | | | | | ff_network_init is a no-op on all platforms except windows, and on windows the performance penalty is minimal (less than 1 ms in my tests). Originally committed as revision 22224 to svn://svn.ffmpeg.org/ffmpeg/trunk
* try to avoid returning odd slices.Michael Niedermayer2010-03-05
| | | | Originally committed as revision 30847 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Round correctly chroma picture height.Vitor Sessak2010-03-05
| | | | | | Fix issue 956. Originally committed as revision 22223 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memory leak in NUT muxerVitor Sessak2010-03-05
| | | | Originally committed as revision 22222 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: fix vertical alignment.Benoit Fouet2010-03-05
| | | | Originally committed as revision 30842 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Update SW scaler doc after libswscale commit 30841.Janusz Krzysztofik2010-03-05
| | | | | | Patch by Janusz Krzysztofik jkrzyszt, tis icnet pl. Originally committed as revision 22221 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libswscale: Extend the unaccelerated path of the unscaled yuv2rgb specialJanusz Krzysztofik2010-03-05
| | | | | | | converter with support for rgb444 output format. Patch by Janusz Krzysztofik jkrzyszt chez tis icnet pl Originally committed as revision 30841 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add initial support for 12-bit color mode.Janusz Krzysztofik2010-03-05
| | | | | | | | | Patch by Janusz Krzysztofik jkrzyszt tis icnet pl Original thread: Subject: [FFmpeg-devel] [PATCH v2] Add initial support for 12-bit color mode. Date: Mon, 1 Mar 2010 02:05:07 +0100 Originally committed as revision 22220 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Return from rtp_read when select returns an errorMartin Storsjö2010-03-05
| | | | Originally committed as revision 22219 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l fix timestamps (lavfi update broke them)Michael Niedermayer2010-03-05
| | | | Originally committed as revision 22218 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix 100l pkt->pos typo.Michael Niedermayer2010-03-05
| | | | Originally committed as revision 22217 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Libavfilter for ffplay support.Michael Niedermayer2010-03-05
| | | | | | | | | This still needs some minor work here and there but should be already functional. Note that the code pathes that are under "not avfilter" ifdefs as well as the ifdefs will be droped as soon as all major issues have been det with, aka could be real soon or not. Originally committed as revision 22216 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix BGR cases missing from depth test in avcodec_get_pix_fmt_loss().Janusz Krzysztofik2010-03-05
| | | | | | | Patch by Janusz Krzysztofik: <${name initial}${surname less the final "ofik"}@tis.icnet.pl>. Originally committed as revision 22215 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggdec: Parse theora headers since ogg might not mark keyframesDavid Conrad2010-03-05
| | | | | | Fixes issue746 Originally committed as revision 22214 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Just ignore streams with unknown codec_type instead of exitingDavid Conrad2010-03-05
| | | | Originally committed as revision 22213 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: use consistent spacing in the ffprobe.c options table.Stefano Sabatini2010-03-04
| | | | Originally committed as revision 22212 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fixed DXVA2 H264 hwaccel after luma/chroma_weight changes.Laurent Aimar2010-03-04
| | | | Originally committed as revision 22211 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fixed buffer overread in flashsv decoder.Laurent Aimar2010-03-04
| | | | Originally committed as revision 22210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support BGR555, BGR565, RGB555 and RGB565 foreign endian output inAlexis Ballier2010-03-04
| | | | | | | | libswscale. Patch by Alexis Ballier, alexis D ballier A gmail Originally committed as revision 30840 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Check url_interrupt_cb in rtp_read, wait in select for max 100 ms before ↵Martin Storsjö2010-03-04
| | | | | | rechecking url_interrupt_cb Originally committed as revision 22209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* handle errors reported by av_get_packet() in Bink demuxerPeter Ross2010-03-04
| | | | Originally committed as revision 22208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Guard against invalid memory readPeter Ross2010-03-04
| | | | Originally committed as revision 22207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: Return the number of bytes consumed in decoding a frame.Alex Converse2010-03-04
| | | | | | The libfaad wrapper does this. Originally committed as revision 22206 to svn://svn.ffmpeg.org/ffmpeg/trunk