summaryrefslogtreecommitdiffstats
path: root/libvo/vo_fbdev.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix redundant redeclaration warnings.diego2007-08-251-4/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24171 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace implicit use of fast_memcpy via macro by explicit use to allowreimar2007-06-051-1/+1
| | | | | | | for future optimization. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23475 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove spurious casts to int. Blessed by Reimar.rathann2006-10-081-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20116 b3059339-0415-0410-9bf9-f77b7e298cf2
* Don't multiply fb_line_len by fb_pixel_size. Fixes too-low placement of OSDpacman2006-03-201-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17902 b3059339-0415-0410-9bf9-f77b7e298cf2
* Don't try to parse fb.modes more than once. Fixes playback of multiple filespacman2006-03-201-0/+4
| | | | | | | with mplayer -vm git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17901 b3059339-0415-0410-9bf9-f77b7e298cf2
* When centering a video with odd width, be sure to start on a pixel boundary.pacman2006-03-041-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17729 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix colormap save/restore for directcolor fb devicespacman2006-02-171-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17638 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix the return types of all (six) libvo API functions. Used to be uint32_t, butivo2005-08-051-6/+6
| | | | | | | | 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 identifiershenry2005-04-181-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15213 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove old buggy workaround. kerneltwosix.h itself will be removed soon if ↵rfelker2004-12-031-1/+0
| | | | | | this doesn't cause problems git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14095 b3059339-0415-0410-9bf9-f77b7e298cf2
* linux 2.6 patch by "ismail 'cartman' dönmez" <ismail.donmez@boun.edu.tr>attila2004-01-101-0/+1
| | | | | | | no idea whether this really works :) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11766 b3059339-0415-0410-9bf9-f77b7e298cf2
* Warning fixes (approved by A'rpi).rathann2003-11-081-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11413 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed -nocolorkeyalex2003-10-221-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11217 b3059339-0415-0410-9bf9-f77b7e298cf2
* Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying supportalex2003-10-171-0/+16
| | | | | | | by Jake Page <jake@CS.Stanford.EDU> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11159 b3059339-0415-0410-9bf9-f77b7e298cf2
* correct handling of subdevice, -fb device is obsoletedalex2003-10-081-11/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11056 b3059339-0415-0410-9bf9-f77b7e298cf2
* vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>alex2003-10-071-0/+30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11037 b3059339-0415-0410-9bf9-f77b7e298cf2
* 4x10l fix. Vars used by the config layer must be malloc'd (strdup) as they ↵alex2003-08-151-2/+5
| | | | | | will be freed at exit. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10619 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10000l, the old code was slow as hell, copying stuff extra times andrfelker2003-08-121-24/+5
| | | | | | | | | | | | | | | | | | | | | | actually broken -- blanking the whole screen at each 'page flip' with -dr enabled. benchmarks: before: 56% cpu for decode 56% cpu for vo with no -dr 25% cpu for vo with -dr after: 56% cpu for decode 25% cpu for vo without -dr 0% cpu for vo with -dr if vo_fbdev is going to do pageflip, it needs to do it for REAL, using vertical scroll registers (like g2), not copying a temp buffer (which will shear anyway and is super-slow). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10579 b3059339-0415-0410-9bf9-f77b7e298cf2
* Changed all printf into mp_msgjoey2003-08-121-294/+204
| | | | | | | | | | | | | | | | | | Removed extern int verbose Removed some unneeded includes Removed swscale, because this should be done by vf layer instead Removed weird video_out_png definition There is no more flip, zoom, or geometry support, so I removed those. Slices, stride support for all supported CSP. Replaced draw_frame with a stub. Removed: do { ... } while (0) Removed unused dstFourcc. Added DR support Removed USE_CONVERT2FB, since we have real DR now Simplified some color depth checks git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10577 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed yv12 support, but left some swscaler support for fast 15 vs 16bpp ↵alex2003-07-131-70/+25
| | | | | | conversion git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10427 b3059339-0415-0410-9bf9-f77b7e298cf2
* at least it works now, but it's horrible slow and broken. double bufferrfelker2003-04-191-2/+2
| | | | | | | and direct rendering support are needed to make this remotely usable... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9942 b3059339-0415-0410-9bf9-f77b7e298cf2
* clean up of -geometry code.attila2003-03-021-2/+5
| | | | | | | 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
* -geometry fix (untested!)arpi2003-01-121-1/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8919 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added support for X style -geometry options (adapted from Henk's patch)mark2003-01-031-2/+2
| | | | | | | -- 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 insteadalex2002-11-111-8/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8149 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10Lalbeu2002-10-301-2/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7981 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10larpi2002-10-231-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7876 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added the -geometry option (supports fbdev and tdfxfb drivers)mark2002-10-231-7/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7867 b3059339-0415-0410-9bf9-f77b7e298cf2
* If movie height is odd, the picture is placed badly, due to wrong rouding.arpi2002-10-231-1/+1
| | | | | | | patch by Balatoni Denes <pnis@coder.hu> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7864 b3059339-0415-0410-9bf9-f77b7e298cf2
* preinit() has an arg... use it.arpi2002-10-091-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7677 b3059339-0415-0410-9bf9-f77b7e298cf2
* -zoom will be handled by -vop scalearpi2002-09-171-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7428 b3059339-0415-0410-9bf9-f77b7e298cf2
* finally removed query_vaa, bes_da and vo_tune_info - the obsoleted libvo apialex2002-08-281-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7125 b3059339-0415-0410-9bf9-f77b7e298cf2
* General Timing Formula algorithm from a scratch.arpi2002-08-221-71/+8
| | | | | | | | | vo_vesa.c so now adjust the timing to highest possible refresh rate using the monitor capabilities from a config file. patch by Rudolf Marek <MAREKR2@cs.felk.cvut.cz> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7070 b3059339-0415-0410-9bf9-f77b7e298cf2
* - fixed size/aspect for -fsarpi2002-07-301-18/+16
| | | | | | | | - use vidix's query_format for vidix mode (10l bug) patch by Jacek Rembisz <jr178783@zodiac.mimuw.edu.pl> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6852 b3059339-0415-0410-9bf9-f77b7e298cf2
* query_format revisedalex2002-05-271-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6213 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed screenshot thingie - it will be moved to video filter layeralex2002-05-271-44/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6204 b3059339-0415-0410-9bf9-f77b7e298cf2
* applied 64bit patch from Ulrich Hecht <uli at suse dot de>alex2002-05-231-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6165 b3059339-0415-0410-9bf9-f77b7e298cf2
* Screenshot on the flynick2002-02-181-0/+54
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4757 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10000hl to Holm... control MUST BE static...arpi2002-02-091-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4597 b3059339-0415-0410-9bf9-f77b7e298cf2
* query_ stuff replaced by new control() - patch by David Holmarpi2002-02-091-2/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4593 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use new tune infonick2002-01-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4435 b3059339-0415-0410-9bf9-f77b7e298cf2
* new info for tuningnick2002-01-311-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4434 b3059339-0415-0410-9bf9-f77b7e298cf2
* did not compile when --disable-vidix was usedpl2002-01-271-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4387 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use real preinitnick2002-01-271-20/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4381 b3059339-0415-0410-9bf9-f77b7e298cf2
* Extensions for video accelerated architecturenick2002-01-261-0/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4353 b3059339-0415-0410-9bf9-f77b7e298cf2
* fbdev nocopy option - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>arpi2002-01-171-2/+41
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4211 b3059339-0415-0410-9bf9-f77b7e298cf2
* added vidix_start() and vidix_stop() for better runtime-resize support ;)alex2002-01-161-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4199 b3059339-0415-0410-9bf9-f77b7e298cf2
* Configurable VIDIX usagenick2002-01-111-3/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4090 b3059339-0415-0410-9bf9-f77b7e298cf2
* VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for ↵nick2002-01-101-19/+84
| | | | | | VIDIX!!! git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4085 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move yuv2rgb to postprocessnick2001-11-061-1/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2733 b3059339-0415-0410-9bf9-f77b7e298cf2
* Using new stuff of rgb15to16nick2001-10-301-15/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2557 b3059339-0415-0410-9bf9-f77b7e298cf2
* Applied patch to switch to graphics mode with -fs by achurch@achurch.org ↵atmos42001-10-211-1/+27
| | | | | | (Andrew Church) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2355 b3059339-0415-0410-9bf9-f77b7e298cf2
* more verbose videomode selectionszabi2001-08-161-30/+72
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1562 b3059339-0415-0410-9bf9-f77b7e298cf2
* changes according to -utf8 option, draw_osd() function addedatlka2001-08-131-2/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1502 b3059339-0415-0410-9bf9-f77b7e298cf2
* nothing importantszabii2001-06-101-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1088 b3059339-0415-0410-9bf9-f77b7e298cf2
* 8bpp fixszabii2001-06-091-2/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1077 b3059339-0415-0410-9bf9-f77b7e298cf2
* small fixszabii2001-06-031-1/+25
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@978 b3059339-0415-0410-9bf9-f77b7e298cf2
* some little cleanupszabii2001-06-021-112/+151
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@951 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed redundant osd.h includesarpi_esp2001-05-241-1/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@866 b3059339-0415-0410-9bf9-f77b7e298cf2
* flip support if (screen depth == frame depth)szabii2001-05-141-21/+23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@805 b3059339-0415-0410-9bf9-f77b7e298cf2
* nothing importantszabii2001-04-291-9/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@664 b3059339-0415-0410-9bf9-f77b7e298cf2
* bpp selection fixedszabii2001-04-281-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@660 b3059339-0415-0410-9bf9-f77b7e298cf2
* some cleanupsszabii2001-04-281-31/+35
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@659 b3059339-0415-0410-9bf9-f77b7e298cf2
* some cleanupszabii2001-04-251-97/+74
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@634 b3059339-0415-0410-9bf9-f77b7e298cf2
* some cleanupszabii2001-04-241-13/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@619 b3059339-0415-0410-9bf9-f77b7e298cf2
* clean uppontscho2001-04-241-15/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@617 b3059339-0415-0410-9bf9-f77b7e298cf2
* nothing importantszabii2001-04-211-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@564 b3059339-0415-0410-9bf9-f77b7e298cf2
* nothing important?szabii2001-04-201-6/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@551 b3059339-0415-0410-9bf9-f77b7e298cf2
* dumb bug fixedszabii2001-04-201-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@539 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed unused variablesszabii2001-04-191-4/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@521 b3059339-0415-0410-9bf9-f77b7e298cf2
* changed query_format return; lots of fixes/changesszabii2001-04-191-102/+98
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@520 b3059339-0415-0410-9bf9-f77b7e298cf2
* fbdev reset fixedszabii2001-04-181-4/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@504 b3059339-0415-0410-9bf9-f77b7e298cf2
* cmap bug fixed (I think)szabii2001-04-161-5/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@482 b3059339-0415-0410-9bf9-f77b7e298cf2
* dumb bugszabii2001-04-161-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@480 b3059339-0415-0410-9bf9-f77b7e298cf2
* small changeszabii2001-04-161-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@477 b3059339-0415-0410-9bf9-f77b7e298cf2
* small changeszabii2001-04-141-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@424 b3059339-0415-0410-9bf9-f77b7e298cf2
* lots of changesszabii2001-04-141-97/+241
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@419 b3059339-0415-0410-9bf9-f77b7e298cf2
* some changes...szabii2001-04-131-180/+300
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@394 b3059339-0415-0410-9bf9-f77b7e298cf2
* some fixesszabii2001-04-121-3/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@384 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1 printf addedszabii2001-04-121-0/+2
|