aboutsummaryrefslogtreecommitdiffhomepage
path: root/libvo/vo_aa.c
Commit message (Collapse)AuthorAge
* Make compilation depending on USE_OSD unconditional.Gravatar uau2006-11-22
| | | | | | | | | USE_OSD was hardcoded to true in configure, manually turning it off would break compilation, and most OSD-related code wasn't affected by it anyway so it did nothing useful. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21177 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make some functions static.Gravatar uau2006-07-08
| | | | | | | Patch by Stefan Huehner, stefan at huehner org. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18955 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move postproc ---> libswscaleGravatar lucabe2006-06-30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18866 b3059339-0415-0410-9bf9-f77b7e298cf2
* Patch by Stefan Huehner / stefan % huehner ! org \Gravatar rathann2006-02-09
| | | | | | | | | | | | | | | | | | | | | | patch replaces '()' for the correct '(void)' in function declarations/prototypes which have no parameters. The '()' syntax tell thats there is a variable list of arguments, so that the compiler cannot check this. The extra CFLAG '-Wstrict-declarations' shows those cases. Comments about a similar patch applied to ffmpeg: That in C++ these mean the same, but in ANSI C the semantics are different; function() is an (obsolete) K&R C style forward declaration, it basically means that the function can have any number and any types of parameters, effectively completely preventing the compiler from doing any sort of type checking. -- Erik Slagter Defining functions with unspecified arguments is allowed but bad. With arguments unspecified the compiler can't report an error/warning if the function is called with incorrect arguments. -- Måns Rullgård git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17567 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix the return types of all (six) libvo API functions. Used to be uint32_t, butGravatar ivo2005-08-05
| | | | | | | | return values can be negative (VO_ERROR, VO_NOTAVAIL and VO_NOTIMPL), so it's changed to int now. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16172 b3059339-0415-0410-9bf9-f77b7e298cf2
* replace VO and VF numeric flags with #defined identifiersGravatar henry2005-04-18
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15213 b3059339-0415-0410-9bf9-f77b7e298cf2
* Convert vo_aa suboption parser to using the subopt-helper.Gravatar ivo2005-03-11
| | | | | | | This obsoletes all -aa* commandline options. Use -vo aa:* instead. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14936 b3059339-0415-0410-9bf9-f77b7e298cf2
* Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.Gravatar diego2004-10-28
| | | | | | | Based on a patch by Sebastian Hegler <s_hegler at gmx dot de>. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13788 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l to albeu for his english grammar, and 10l to me becouse I noticed that ↵Gravatar alex2003-08-13
| | | | | | lately (my backward compatibilty macro uses M_OPT_UNKNOWN) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10596 b3059339-0415-0410-9bf9-f77b7e298cf2
* vf_scale.h & related cleanup & some small warning fix by dominikGravatar michael2003-06-01
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10234 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use new config headers and types.Gravatar albeu2003-03-30
| | | | | | | Remove unneeded dupendency on mconfig git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9757 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10000l (YUV vs. YVU swscale fix/cleanup)Gravatar michael2003-03-27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9698 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100lGravatar michael2003-02-23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9497 b3059339-0415-0410-9bf9-f77b7e298cf2
* linux->osdepGravatar arpi2003-02-09
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9381 b3059339-0415-0410-9bf9-f77b7e298cf2
* better fix of vo_aa font segfaultGravatar henry2003-01-30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9177 b3059339-0415-0410-9bf9-f77b7e298cf2
* New config system + cleanup of header inter dependencyGravatar albeu2002-11-12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8165 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed get_info, using the same sheme as in libmpcodecs insteadGravatar alex2002-11-11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8149 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed some typos and an error in the help output.Gravatar diego2002-10-06
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7626 b3059339-0415-0410-9bf9-f77b7e298cf2
* add Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz> freetype patchGravatar pontscho2002-08-29
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7141 b3059339-0415-0410-9bf9-f77b7e298cf2
* finally removed query_vaa, bes_da and vo_tune_info - the obsoleted libvo apiGravatar alex2002-08-28
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7125 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10L bugs founds by Jindrich Makovicka <makovick at MLinux dot fjfi dot cvut ↵Gravatar albeu2002-07-26
| | | | | | | | | dotcz> Fix the eq git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6810 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10L bugs founds by Jindrich Makovicka <makovicki at KMLinux dot fjfi dot ↵Gravatar albeu2002-07-20
| | | | | | cvuti dot cz> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6758 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use the new Y8 support in place of YV12.Gravatar albeu2002-06-23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6523 b3059339-0415-0410-9bf9-f77b7e298cf2
* it uses swscalerGravatar alex2002-05-27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6211 b3059339-0415-0410-9bf9-f77b7e298cf2
* revised query_formatGravatar alex2002-05-27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6206 b3059339-0415-0410-9bf9-f77b7e298cf2
* A almost complete rewrite.Gravatar albeu2002-04-27
| | | | | | | | | | Old plain-C integrated scaler is removed. Follow the new flow. Use aspect code. Faster. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5871 b3059339-0415-0410-9bf9-f77b7e298cf2
* moved font_laod.hGravatar arpi2002-03-24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5296 b3059339-0415-0410-9bf9-f77b7e298cf2
* 32bpp support not implemented - do not lieGravatar arpi2002-03-10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5028 b3059339-0415-0410-9bf9-f77b7e298cf2
* I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'Gravatar nick2002-02-17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4738 b3059339-0415-0410-9bf9-f77b7e298cf2
* rgb/bgr 32bpp and IYUV/I420 supportGravatar alex2002-02-12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4675 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10000hl to Holm... control MUST BE static...Gravatar arpi2002-02-09
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4597 b3059339-0415-0410-9bf9-f77b7e298cf2
* query_ stuff replaced by new control() - patch by David HolmGravatar arpi2002-02-09
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4593 b3059339-0415-0410-9bf9-f77b7e298cf2
* new info for tuningGravatar nick2002-01-31
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4434 b3059339-0415-0410-9bf9-f77b7e298cf2
* Extensions for video accelerated architectureGravatar nick2002-01-26
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4353 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added reverting support for -aa* optionsGravatar albeu2002-01-19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4259 b3059339-0415-0410-9bf9-f77b7e298cf2
* 'mplayer -aadriver stdout' segfault fixed by Fredrik Kuivinen ↵Gravatar arpi2002-01-11
| | | | | | <freku045@student.liu.se> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4095 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move yuv2rgb to postprocessGravatar nick2001-11-06
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2733 b3059339-0415-0410-9bf9-f77b7e298cf2
* never declare variables in *.h files, plsGravatar nick2001-10-27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2499 b3059339-0415-0410-9bf9-f77b7e298cf2
* aalib 1.4.X incombatibility fixedGravatar folke2001-08-17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1578 b3059339-0415-0410-9bf9-f77b7e298cf2
* now linux/curses detection worksGravatar folke2001-08-17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1577 b3059339-0415-0410-9bf9-f77b7e298cf2
* osd problem with YV12 fixedGravatar folke2001-08-17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1576 b3059339-0415-0410-9bf9-f77b7e298cf2
* vo_font SEGFAULT fixedGravatar arpi2001-08-17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1573 b3059339-0415-0410-9bf9-f77b7e298cf2
* define USE_OSD / USE_SUB fixesGravatar folke2001-08-16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1555 b3059339-0415-0410-9bf9-f77b7e298cf2
* vo_aa: +subtitles, +progressbar, key violation with mplayer keys fixed, ↵Gravatar folke2001-08-16
| | | | | | +consoleblanking disabled, +/dev/vcsa checking +header change git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1554 b3059339-0415-0410-9bf9-f77b7e298cf2
* vo_aa: +subtitles, +progressbar, key violation with mplayer keys fixed, ↵Gravatar folke2001-08-16
| | | | | | +consoleblanking disabled, +/dev/vcsa checking git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1552 b3059339-0415-0410-9bf9-f77b7e298cf2
* All aalib options can be passed to aalib (-aaXXX), also -aahelp is new. ↵Gravatar folke2001-08-15
| | | | | | fixed wrong char git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1539 b3059339-0415-0410-9bf9-f77b7e298cf2
* All aalib options can be passed to aalib (-aaXXX), also -aahelp is newGravatar folke2001-08-15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1538 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix OSD, small misspelling.Gravatar atmos42001-08-15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1528 b3059339-0415-0410-9bf9-f77b7e298cf2
* write fault error fixedGravatar folke2001-08-14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1521 b3059339-0415-0410-9bf9-f77b7e298cf2
* vo_aa: configurable nowGravatar folke2001-08-14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1519 b3059339-0415-0410-9bf9-f77b7e298cf2