summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Implement CPP condition check support in configure.Stefano Sabatini2008-10-12
| | | | Originally committed as revision 15597 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nellymoserenc: flush PutBitContext after use.Ramiro Polla2008-10-11
| | | | Originally committed as revision 15596 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aac_parser: fix strict aliasing violationMåns Rullgård2008-10-11
| | | | Originally committed as revision 15595 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only special-case absolute DOS paths on systems that support them.Ramiro Polla2008-10-10
| | | | Originally committed as revision 15594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make configure --help return 0.Stefano Sabatini2008-10-09
| | | | Originally committed as revision 15593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document libavfilter filters options in configure -h.Stefano Sabatini2008-10-09
| | | | Originally committed as revision 15592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get_pixels_sse2, ~+12% performance compared to mmxBaptiste Coudurier2008-10-09
| | | | Originally committed as revision 15591 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Limit discontinuity handling to containers that allow discontinuities.Michael Niedermayer2008-10-09
| | | | Originally committed as revision 15590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark some symbols in swscale.c as constant.Diego Pettenò2008-10-09
| | | | | | | These are only used in swscale_template.c (and thus don't need to be made extern), and can be declared as ASM constants. Originally committed as revision 27737 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Mark dither_2x2_{8,4} static to swscale.cDiego Pettenò2008-10-09
| | | | | | | These two tables are not used outside swscale.c even though they are declared also in yuv2rgb.c. Originally committed as revision 27736 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Mark variation-specific interleaveBytes static.Diego Pettenò2008-10-09
| | | | | | | These functions are never called by themselves, the alias interleaveBytes is used instead. Originally committed as revision 27735 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Invert logic for the single-pass in swScale() functions.Diego Pettenò2008-10-09
| | | | | | | | | | | | | | Instead of having a firstTime variable defaulting to 1, have a warnedAlready defaulting to 0. While this should make no difference in code speed at runtime, it allows to aggregate the four bytes of that variable with clip_table in .bss section, rather than issuing a .data section just for that. As it is, libswscale require no .data section but .data.rel.ro (that can be mitigated by prelinking), so the change might actually save one page of memory at runtime (per process). Originally committed as revision 27734 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Change variable types from int to enum PixelFormat.Carl Eugen Hoyos2008-10-09
| | | | | | Fixes icc warning #188: enumerated type mixed with another type Originally committed as revision 27733 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make gcc 2.95 happy.Michael Niedermayer2008-10-08
| | | | Originally committed as revision 15589 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not set src[1] to the palette, it is now in the contextVitor Sessak2008-10-08
| | | | Originally committed as revision 27731 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add a new unscaled PAL8 -> RGB converter.Vitor Sessak2008-10-08
| | | | Originally committed as revision 27730 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* cosmetics: indentationAurelien Jacobs2008-10-08
| | | | Originally committed as revision 15588 to svn://svn.ffmpeg.org/ffmpeg/trunk
* lookup AVCodec by nameAurelien Jacobs2008-10-08
| | | | Originally committed as revision 15587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allows calling avcodec_find_(en|de)coder_by_name with NULL parameterAurelien Jacobs2008-10-08
| | | | Originally committed as revision 15586 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change one more variable type from int to enum PixelFormat.Aurelien Jacobs2008-10-08
| | | | | | This one was missing from r27727. Originally committed as revision 27728 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add a bunch of const qualifiers to function arguments.Diego Biurrun2008-10-07
| | | | | | Taken from the upstream libmpeg2 version of the file. Originally committed as revision 15585 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change variable types from int to enum PixelFormat.Carl Eugen Hoyos2008-10-07
| | | | | | Fixes icc warning #188: enumerated type mixed with another type Originally committed as revision 27727 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* replacing frame_rate and frame_rate_base with an AVRational time_baseRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15584 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifying code as per Michael's suggestionRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15583 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic updates as per Michael's suggestionRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15582 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vertically aligning as per Michael's suggestionRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15581 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unrolling the loops as per Michael's suggestionRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15580 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing a bug that prevented proper unweighting table to be selectedRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygenizing the commentsRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifying the code as per Michael's suggestionRoman Shaposhnik2008-10-07
| | | | Originally committed as revision 15577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Sync cosmetics from upstream.Diego Biurrun2008-10-07
| | | | Originally committed as revision 15576 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename variables to clarify the channel coupling element and correspondingAlex Converse2008-10-06
| | | | | | | | target channel element. Patch by Alex Converse (alex converse gmail com) Originally committed as revision 15575 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct documentation of ch_select array.Alex Converse2008-10-06
| | | | | | Patch by Alex Converse (alex converse gmail com) Originally committed as revision 15574 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Corrections to channel coupling code to attain conformance for appropriateAlex Converse2008-10-06
| | | | | | | | streams. Slightly reworked from a patch by Alex Converse (alex converse gmail com) Originally committed as revision 15573 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Synchronise presets with recent subme/brdo/bidir_refine -> subme changes inRobert Swain2008-10-06
| | | | | | libx264 Originally committed as revision 15572 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove obsolete liba52 wrapper code.Diego Biurrun2008-10-06
| | | | Originally committed as revision 15571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make less verbose a sentence in the preset system documentation.Stefano Sabatini2008-10-05
| | | | Originally committed as revision 15570 to svn://svn.ffmpeg.org/ffmpeg/trunk
* gcc-apple specific fallback not necessary anymore (btw no apple hardware is ↵Luca Barbato2008-10-05
| | | | | | less than a Intel core, thus it won't come there w/out disabling all the optimizations) Originally committed as revision 27722 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Cosmetics: rename mace3_decode_frame() to mace_decode_frame()Vitor Sessak2008-10-05
| | | | Originally committed as revision 15569 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid code duplication between mace3_decode_frame() and mace6_decode_frame()Vitor Sessak2008-10-05
| | | | Originally committed as revision 15568 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused and invalid code from ffmpeg.c.Stefano Sabatini2008-10-05
| | | | Originally committed as revision 15567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use HAVE_FAST_64BIT instead of nonstandard __WORDSIZE macro.Diego Biurrun2008-10-05
| | | | Originally committed as revision 27720 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use a for() instead of triplicating code.Vitor Sessak2008-10-05
| | | | Originally committed as revision 15566 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Register RV-[34] block specific feature for long future loop filterKostya Shishkov2008-10-05
| | | | Originally committed as revision 15565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize duplicate table reading code.Vitor Sessak2008-10-05
| | | | Originally committed as revision 15564 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document the preset files system.Stefano Sabatini2008-10-05
| | | | Originally committed as revision 15563 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, fix amrwb sample rateBaptiste Coudurier2008-10-04
| | | | Originally committed as revision 15562 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: correct muxing of ASS packetsAurelien Jacobs2008-10-04
| | | | | | | | - split packets to store one ASS event line per Matroska block - reformat ASS events to Matroska modified format - extract display duration for ASS events to store as Matroska block duration Originally committed as revision 15561 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: use correct EBML ID for block durationAurelien Jacobs2008-10-04
| | | | Originally committed as revision 15560 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: pass the packet size directly as parameter of mkv_blockgroup_size()Aurelien Jacobs2008-10-04
| | | | Originally committed as revision 15559 to svn://svn.ffmpeg.org/ffmpeg/trunk