aboutsummaryrefslogtreecommitdiffhomepage
path: root/libvo/vo_tdfxfb.c
Commit message (Collapse)AuthorAge
* Delete things related to old translation systemGravatar Uoti Urpala2010-03-10
| | | | | Remove the help/ subdirectory, configure code to create toplevel help_mp.h, and all the '#include "help_mp.h"' lines from .c files.
* Translation system changes part 2: replace macros by stringsGravatar Amar Takhar2009-07-07
| | | | | Replace all MSGTR_ macros in the source by the corresponding English string.
* Translation system changes part 1: wrap translated stringsGravatar Amar Takhar2009-07-07
| | | | | Replace mp_msg() calls which have a translated string as the format argument with mp_tmsg and add _() around all other translated strings.
* Merge svn changes up to r29277Gravatar Uoti Urpala2009-05-08
|\
| * Add missing 'void' to parameterless function declarations.Gravatar diego2009-05-04
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29254 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r27573Gravatar Uoti Urpala2008-09-10
|\| | | | | | | | | Conflicts: libmpcodecs/vd_ffmpeg.c
| * Replace casual GPL notices by proper license headers.Gravatar diego2008-09-07
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27541 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Remove variable arguments from vo control() functionsGravatar Uoti Urpala2008-04-23
|/ | | | | No voctrl uses them any more, and using them would not be a good idea because it makes forwarding arguments to other functions harder.
* Mark the vo_functions_t definitions as const where possible.Gravatar reimar2007-12-02
| | | | | | | | This is not possible for xover and anything supporting vidix due to horrible hacks. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25248 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make vo info structs constGravatar reimar2007-12-02
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25244 b3059339-0415-0410-9bf9-f77b7e298cf2
* Rename some misspelled and misnamed messages.Gravatar diego2006-04-28
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18336 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix printf->mp_msg transition, 10l to Reynaldo and/or AttilaGravatar rathann2006-04-24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18261 b3059339-0415-0410-9bf9-f77b7e298cf2
* Part 5 and final of otvos attila's oattila AT chello-hu mp_msg changes, with ↵Gravatar reynaldo2006-04-24
| | | | | | lots of corrections git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18235 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
* -vop ---> -vfGravatar diego2003-10-25
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11262 b3059339-0415-0410-9bf9-f77b7e298cf2
* I found that the tdfxfb video output driver doesn't work when compiled withGravatar attila2003-10-15
| | | | | | | | | | | gcc 3.x. The OSD works fine, but the video size is not adjusted properly (it is always the same size as a console character). This patch corrects it (at least it works on my system). Tested with gcc 3.3.1 and gcc 2.95.4. patch by Jesús Sánchez <gusanje@yahoo.es> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11130 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed geometry that someone broke grr.Gravatar mark2003-03-03
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9522 b3059339-0415-0410-9bf9-f77b7e298cf2
* clean up of -geometry code.Gravatar attila2003-03-02
| | | | | | | disabled -geometry for all but -vo xv (will be fixed later) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9518 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added support for X style -geometry options (adapted from Henk's patch)Gravatar mark2003-01-03
| | | | | | | -- Mark git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8746 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
* *HUGE* set of compiler warning fixes, unused variables removalGravatar arpi2002-11-06
| | | | | | | based on patch by Dominik Mierzejewski <dominik@rangers.eu.org> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8124 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added the -geometry option (supports fbdev and tdfxfb drivers)Gravatar mark2002-10-23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7867 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use the common aspect codeGravatar albeu2002-10-10
| | | | | | | | Better preinint, fix the dr with planar format uyvy support git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7709 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed some breakages of single-buffer rendering of tdfxGravatar mark2002-08-29
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7138 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
* fixed possible 'DoS' bugGravatar alex2002-08-28
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7118 b3059339-0415-0410-9bf9-f77b7e298cf2
* clear screen and tiny image bug patch by Burton Samograd ↵Gravatar alex2002-08-28
| | | | | | <kruhft@kruhft.dyndns.org> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7114 b3059339-0415-0410-9bf9-f77b7e298cf2
* mp_image.h and img_format.h moved to libmpcodecsGravatar arpi2002-04-13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5608 b3059339-0415-0410-9bf9-f77b7e298cf2
* Misc cleanups of the codeGravatar mark2002-04-13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5591 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added support for choosing weather to use double-buffering or single bufferingGravatar mark2002-04-13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5581 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some OSD and other random fixes. Added double bufferingGravatar mark2002-04-12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5580 b3059339-0415-0410-9bf9-f77b7e298cf2
* Lots of updates and bugfixes to the tdfxfb driverGravatar mark2002-04-11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5568 b3059339-0415-0410-9bf9-f77b7e298cf2
* new tdfxfb yuv driver by Mark Zealey <mark@zealos.org>Gravatar arpi2002-04-09
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5541 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
* 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
* Move yuv2rgb to postprocessGravatar nick2001-11-06
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2733 b3059339-0415-0410-9bf9-f77b7e298cf2
* new version by zsteva@ptt.yuGravatar arpi2001-10-21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2351 b3059339-0415-0410-9bf9-f77b7e298cf2
* tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>Gravatar arpi2001-09-27
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1980 b3059339-0415-0410-9bf9-f77b7e298cf2