summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Rename the RTP muxer sources so that the packetisation functions are inLuca Abeni2010-01-18
| | | | | | rtpenc_*.c files. Originally committed as revision 21284 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move CAVLC 8x8 DCT special case from ff_h264_filter_mb() to fill_cachesMichael Niedermayer2010-01-18
| | | | | | that way it is also available for ff_h264_filter_mb_fast(). Originally committed as revision 21283 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the ff_rtp_send_h264() prototype from rtp_h264.h (such functionLuca Abeni2010-01-18
| | | | | | belongs to the RTP muxer, and its prototype already is in rtpenc.h) Originally committed as revision 21282 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add macros for 64- and 128-bit write-combining optimization to intreadwrite.h.Alexander Strange2010-01-18
| | | | | | Add x86 implementation using MMX/SSE. Originally committed as revision 21281 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define out currently unused static functions.Zuxy Meng2010-01-18
| | | | Originally committed as revision 30365 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Perform reference remapping at fill_cache() time instead of in theMichael Niedermayer2010-01-18
| | | | | | | loop filter. This removes one obstacle of getting ff_h264_filter_mb_fast() bitexact. code is maybe 0.1% faster Originally committed as revision 21280 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add uldx fourcc to mpeg4 in riff.cBen Littler2010-01-18
| | | | Originally committed as revision 21279 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark all intreadwrite functions av_always_inlineMåns Rullgård2010-01-18
| | | | Originally committed as revision 21278 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only set HAVE_MMX when a supported CPU is specifiedMåns Rullgård2010-01-18
| | | | Originally committed as revision 21277 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make qp check for loop filter skiping also work with MBAFF.Michael Niedermayer2010-01-18
| | | | Originally committed as revision 21276 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Comment about a cornercase we ignore currentlyMichael Niedermayer2010-01-18
| | | | Originally committed as revision 21275 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the qp check to skip the loop filter up.Michael Niedermayer2010-01-18
| | | | Originally committed as revision 21274 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reorganize how values are stored in h->non_zero_count.Michael Niedermayer2010-01-17
| | | | | | ~1% faster Originally committed as revision 21273 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove stray '\' at the end of macro definitions.Stefano Sabatini2010-01-17
| | | | Originally committed as revision 30362 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove duplicated or pointless newlines.Stefano Sabatini2010-01-17
| | | | Originally committed as revision 30361 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Factorize error message logging, log it if the converter cannot beStefano Sabatini2010-01-17
| | | | | | set. Originally committed as revision 30360 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Reindent after the last commit.Stefano Sabatini2010-01-17
| | | | Originally committed as revision 30359 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make the pal2rgbWrapper set and use the converter in pal2rgbWrapperStefano Sabatini2010-01-17
| | | | | | | | only if the input format is paletted. Fix potential crashes/weirdness if the input format is non-paletted. Originally committed as revision 30358 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Disable a few things in fill_filter_caches() that arent needed.Michael Niedermayer2010-01-17
| | | | | | 0.1% speedup Originally committed as revision 21272 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split fill_caches() between filter and decoder.Michael Niedermayer2010-01-17
| | | | Originally committed as revision 21271 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rearchitecturing the stiched up goose part 1Michael Niedermayer2010-01-17
| | | | | | | | | | | Run loop filter per row instead of per MB, this also should make it much easier to switch to per frame filtering and also doing so in a seperate thread in the future if some volunteer wants to try. Overall decoding speedup of 1.7% (single thread on pentium dual / cathedral sample) This change also allows some optimizations to be tried that would not have been possible before. Originally committed as revision 21270 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove double constMåns Rullgård2010-01-17
| | | | Originally committed as revision 30357 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* add vspx fourcc to mpeg4 in riff.cBen Littler2010-01-17
| | | | Originally committed as revision 21269 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify libsdl checkMåns Rullgård2010-01-17
| | | | Originally committed as revision 21268 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add check_struct functionMåns Rullgård2010-01-17
| | | | | | | This adds a check_struct function to test for availability of a member within a struct. Originally committed as revision 21267 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify check_lib2Måns Rullgård2010-01-17
| | | | Originally committed as revision 21266 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: pass extra flags to check_cpp from check_cpp_conditionMåns Rullgård2010-01-17
| | | | Originally committed as revision 21265 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: pass extra flags to check_cc from check_ldMåns Rullgård2010-01-17
| | | | Originally committed as revision 21264 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_match_ext() rather than the deprecated match_ext(), fixStefano Sabatini2010-01-17
| | | | | | warnings. Originally committed as revision 21263 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize error message logging in rgb2rgbWrapper().Stefano Sabatini2010-01-17
| | | | Originally committed as revision 30356 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* ReindentMåns Rullgård2010-01-17
| | | | Originally committed as revision 30350 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove inline from initFilter()Måns Rullgård2010-01-17
| | | | | | It makes no sense having that function inlined. Originally committed as revision 30349 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make sure we do not export incorrect _NE pixformat descriptions by eitherReimar Döffinger2010-01-17
| | | | | | including config.h if available or not defining them if it isn't. Originally committed as revision 21262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix comment typo carefull -> carefulMåns Rullgård2010-01-17
| | | | | | Spotted by someone on IRC. Originally committed as revision 21261 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing parens in AV_WN macrosMåns Rullgård2010-01-17
| | | | Originally committed as revision 21260 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing Makefile dependencies to CONFIG_SNOW_ENCODER.Alexander Strange2010-01-17
| | | | | | | Fixes build with --disable-encoders --enable-encoder=snow. This fixes MPlayer build with --disable-mencoder. Originally committed as revision 21259 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation after r21257.Carl Eugen Hoyos2010-01-17
| | | | Originally committed as revision 21258 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a const qualifier in a cast, fix the gcc warning:Stefano Sabatini2010-01-17
| | | | | | | swscale.c: In function ‘sws_scale’: swscale.c:2968: warning: cast discards qualifiers from pointer target type Originally committed as revision 30341 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Support demuxing of Sony OpenMG files without metadata header.Michael Karcher2010-01-17
| | | | | | Original patch by Michael Karcher, ffmpeg A mkarcher dialup fu-berlin de Originally committed as revision 21257 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a const qualifier in a cast, fix the gcc warning:Stefano Sabatini2010-01-17
| | | | | | | swscale.c: In function ‘planarCopy’: swscale.c:2256: warning: cast discards qualifiers from pointer target type Originally committed as revision 30340 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix typo, "get rid off" -> "get rid of".Stefano Sabatini2010-01-16
| | | | Originally committed as revision 30338 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* regtest: run tests only for enabled codecs and formatsMåns Rullgård2010-01-16
| | | | Originally committed as revision 21256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* regtest: split wma test into wmav1 and wmav2Måns Rullgård2010-01-16
| | | | Originally committed as revision 21255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* regtest: split reference files allowing tests to run individuallyMåns Rullgård2010-01-16
| | | | | | | | | | | With this change, the output is checked immediately after each test has run. This means commands like "make regtest-mpeg2" can now be used to run a single test and get meaningful results. By default, make will abort if any test fails. To run all tests regardless, use make -k. Originally committed as revision 21254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* regtest: suppress console output from testsMåns Rullgård2010-01-16
| | | | | | | | | This disables all console output from the *-regression.sh scripts by default. If the V environment variable is set to 1, ffmpeg commands are printed before being run. If V is greater than 1, ffmpeg output goes to the console, otherwise stderr is redirected to a file. Originally committed as revision 21253 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r30331, which broke compilation.Stefano Sabatini2010-01-16
| | | | | | | swScale_C is not templated if any optimization is to be used and !runtime_cpudetect. Originally committed as revision 30334 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Prefer enum PixelFormat to int as the parameter type ofStefano Sabatini2010-01-16
| | | | | | fmt_depth(fmt). Originally committed as revision 30333 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Declare with av_unused the variable alpMmxFilter, fix the gcc warning:Stefano Sabatini2010-01-16
| | | | | | | | swscale_template.c: In function ‘swScale_C’: swscale_template.c:2580: warning: unused variable ‘alpMmxFilter’ swscale_template.c: In function ‘sws_init_swScale_C’: Originally committed as revision 30332 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Factorize the code which calls the non optimized C functions inStefano Sabatini2010-01-16
| | | | | | getSwsFunc(). Originally committed as revision 30331 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Prefer "to %s%s" over "to%s %s", slightly more readable.Stefano Sabatini2010-01-16
| | | | Originally committed as revision 30330 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale