summaryrefslogtreecommitdiffstats
path: root/libvo/vo_dxr3.c
Commit message (Collapse)AuthorAgeFilesLines
* Accidentally mixed experimental code with stable one during last commit,mswitch2002-02-181-17/+15
| | | | | | | | fixed... Also updated changelog to reflect recent changes git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4756 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added VOCTRL_PAUSE and VOCTRL_RESUMEmswitch2002-02-181-18/+33
| | | | | | | | | Fixed playback bug in vo_dxr3 which would cause syncloss when playing ntsc movies on pal and vice versa (this does not affect mpeg playback as we still don't know how to set the internal fps registers) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4755 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed a bug with prebuffering which would cause syncloss, someone atmswitch2002-02-161-4/+0
| | | | | | | sigma should go die for not giving us the damn tech docs =( git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4728 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed a strange bug that sneaked in at the last minute (vobsub wouldmswitch2002-02-161-10/+8
| | | | | | | segfault for some reason.. I don't even know what vobsub is) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4725 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed bug which would cause gibberish to be printed when using :noprebufmswitch2002-02-161-15/+18
| | | | | | | | Removed equalization code, it caused problems with older machines, until someone with a fast machine can betatest it it's only worthless git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4724 b3059339-0415-0410-9bf9-f77b7e298cf2
* Using the mplayer SwScaler instead of doing scaling manually (sometimes this ↵mswitch2002-02-131-66/+65
| | | | | | | | | | | | dies with sig FPE when not using -vc mpegpes with mpegs (I find it unlikely it would only happen on mpegs though)) Using detection code to check if using NTSC or PAL/SECAM and setting appropriate resolution and GOP-Size based on this information. It now generates a valid mpeg1 stream instead of a hybrid mpeg2 (with mpeg1 headers). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4686 b3059339-0415-0410-9bf9-f77b7e298cf2
* updated :noprebuf to emulate the playback used in mplayer 0.60 (with dxr3 ↵mswitch2002-02-091-7/+15
| | | | | | | | | patch), this solves alot of issues for ppl who had problems with the new prebuffering code git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4614 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed a bug where seeking would lock mplayermswitch2002-02-091-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4610 b3059339-0415-0410-9bf9-f77b7e298cf2
* Removed some stuff from the em8300 driver, had to compensatemswitch2002-02-091-6/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4608 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added switch to disable prebufferingmswitch2002-02-091-9/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4606 b3059339-0415-0410-9bf9-f77b7e298cf2
* ARGH, changing playback speed was a mistake...mswitch2002-02-091-7/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4605 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed some stuff with setting timestamps, and added proper setting of ↵mswitch2002-02-091-2/+7
| | | | | | | | | playback speed. I'm guessing I'm looking at lots of sleepless nights ahead =( git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4604 b3059339-0415-0410-9bf9-f77b7e298cf2
* Thanks to the new control() method I've finally been able to add ↵mswitch2002-02-091-13/+21
| | | | | | | | | prebuffering support. This should greatly inprove performance on all systems... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4603 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-42/+33
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4593 b3059339-0415-0410-9bf9-f77b7e298cf2
* Activate QSCALE flag for avcodecmswitch2002-02-031-16/+14
| | | | | | | | | | Reset playback speed on exit (we aren't using this feature yet... but will hopefully do soon) Use fsync instead of the mediocre flush ioctl's on seeking/pausing, at least video seems to stay in sync... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4524 b3059339-0415-0410-9bf9-f77b7e298cf2
* Forgot the osd fix in the other patch, well, here it is ;)mswitch2002-02-031-5/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4515 b3059339-0415-0410-9bf9-f77b7e298cf2
* Switched from libmp1e to libavcodec, at least for me it runs helluva lot ↵mswitch2002-02-031-230/+173
| | | | | | | | | | | faster than libmp1e (high quality divx movies that before ran very poor now plays perfectly). Also includes some minor fixes to the osd support. Since libmp1e has issues with non-mmx system I think this move is a smart one... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4514 b3059339-0415-0410-9bf9-f77b7e298cf2
* Cleaned up some codemswitch2002-02-021-20/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4481 b3059339-0415-0410-9bf9-f77b7e298cf2
* new info for tuningnick2002-01-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4434 b3059339-0415-0410-9bf9-f77b7e298cf2
* Extensions for video accelerated architecturenick2002-01-261-0/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4353 b3059339-0415-0410-9bf9-f77b7e298cf2
* Reverted to using software sync again, some day I'll die of a heartattack if ↵mswitch2002-01-191-26/+7
| | | | | | | | | | I can't get this m*f*er to work on both fast and slow machines... May all hell be let loose on sigma for not cooperating with us git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4270 b3059339-0415-0410-9bf9-f77b7e298cf2
* Only use hardware sync and prebuffering with mpegs!mswitch2002-01-191-13/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4268 b3059339-0415-0410-9bf9-f77b7e298cf2
* Handle timestamps internallymswitch2002-01-191-12/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4266 b3059339-0415-0410-9bf9-f77b7e298cf2
* Removed seeking warning message since it has now been fixed in the drivermswitch2002-01-191-1/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4253 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed seekingmswitch2002-01-171-3/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4220 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added new syncengine thanks to a new previously undocumented feature of the ↵mswitch2002-01-171-91/+177
| | | | | | | | | | | | | | | | em8300, this might fix playback on both slow and fast machines (more testing needed). This also requires users to get the em8300 driver from cvs until the next version is released (will probably happen this weekend) Added lots of comments, should be pretty easy to understand most of the internals now Added lots of brackets to if's for's while's etc, this is not a cosmetical thing but rather due to the fact I got some very odd bugs with else's since I didn't properly use brackets (and it's the K&R standard to have brackets everywhere) Fixed some bugs that would occur when disabling libmp1e Switched to default to the new naming scheme of device nodes, the driver will slowly switch over to this state, if it can't find devices under the new name it will try the old naming scheme I stopped opening devices in non-blocking mode, it would break the new syncengine which tries to burst data to the device (alot of times meaning it will fill the fifo pretty fast which would previously result in jerkyness on fast machines) The device now sets the initial state of the pts and speed (probably not needed, but assumption is the mother of all fuckups =) Keep the control interface open during the entire duration of the libvo device, we might need this to flush video buffers on seeking (currently not implemented, therefore seeking is broken) This is beta stuff to the driver, I will get some users to test it for me and do my best to fix seeking as soon as possible... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4219 b3059339-0415-0410-9bf9-f77b7e298cf2
* Moved declaration of picture_* out of ifdef MP1E as not to break compilation ↵mswitch2002-01-151-1/+1
| | | | | | for those of you who disable libmp1e git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4167 b3059339-0415-0410-9bf9-f77b7e298cf2
* hw spu support for dxr3 - patch by David Holmarpi2002-01-151-7/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4161 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed a bug relating to libmp1e (actually the bug is in libmp1e, but this ↵mswitch2002-01-121-2/+0
| | | | | | solution should be safe enough) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4110 b3059339-0415-0410-9bf9-f77b7e298cf2
* useless cosmetics changes... a.k.a. cvslog killer - patch by David Holmarpi2002-01-111-301/+348
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4096 b3059339-0415-0410-9bf9-f77b7e298cf2
* Reverted to accurate but glitchy sync...mswitch2002-01-091-20/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4064 b3059339-0415-0410-9bf9-f77b7e298cf2
* preliminary config interfacemswitch2002-01-061-7/+27
| | | | | | | dual syncengine git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4007 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixes to sync codemswitch2002-01-061-10/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4006 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some last minute changes to accomodate for anamorphic 1.85:1 and 2.35:1 ↵mswitch2001-12-281-10/+11
| | | | | | movies... Needs more work, but this is good enough for now. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3862 b3059339-0415-0410-9bf9-f77b7e298cf2
* Brand new sync core, uses hw sync for everything.mswitch2001-12-281-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3829 b3059339-0415-0410-9bf9-f77b7e298cf2
* osd support, not for mpegpesmswitch2001-12-261-24/+36
| | | | | | | more cleanups of old code git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3760 b3059339-0415-0410-9bf9-f77b7e298cf2
* Modified aspect reference, uses default PAL values... Difference to NTSC ↵mswitch2001-12-221-1/+1
| | | | | | should be minimal enough so that no checking of videomode is necessary. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3662 b3059339-0415-0410-9bf9-f77b7e298cf2
* Modified the sync code once again, commented out hardware pts sync (I'll ↵mswitch2001-12-201-43/+38
| | | | | | | | | likely burn in hell before understanding how to get this bastard to sync well) Added automagic setup of aspect ratio, will remove the "aspect-bug" (I hope). As well as please you rich 16:9 doods ;) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3640 b3059339-0415-0410-9bf9-f77b7e298cf2
* Removed conversion for yuy2, libmp1e supports this format, no need to ↵mswitch2001-12-201-15/+9
| | | | | | cnovert it... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3631 b3059339-0415-0410-9bf9-f77b7e298cf2
* Removed some old libavcodec code which would cause inproper scaling of some ↵mswitch2001-12-201-38/+20
| | | | | | movies... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3630 b3059339-0415-0410-9bf9-f77b7e298cf2
* Inproved mpeg sync on fast computersmswitch2001-12-191-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3622 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix glitchy mpeg playbackmswitch2001-12-191-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3615 b3059339-0415-0410-9bf9-f77b7e298cf2
* MP1E configure patch by D. Holm.atmos42001-12-101-2/+18
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3433 b3059339-0415-0410-9bf9-f77b7e298cf2
* Removed hardware syncing support. Actually movies seem to run much smoother ↵mswitch2001-12-081-5/+0
| | | | | | without it. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3388 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed typoalex2001-12-071-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3375 b3059339-0415-0410-9bf9-f77b7e298cf2
* Minor typo fix (which I thought I commited yesterday)mswitch2001-12-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3334 b3059339-0415-0410-9bf9-f77b7e298cf2
* Switched from rte which caused alot of problems for some users to libmp1e.mswitch2001-12-041-55/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3330 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added support for codecs that supports BGR24 (some opensource codecs and vivo)mswitch2001-11-301-26/+98
| | | | | | | | | | | Added the over-requested underrated black-border around scaled movies that everyone's been nagging me about lately =). Fixed the following Bugs: YV12 video getting cropped at the bottom Lockups on exit (if these problems surface again, contact me please) Invalid stride in YUY2 playback git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3233 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix green borders -> black borders, patch from D. Holm, also small fix to ↵atmos42001-11-301-10/+24
| | | | | | dxr3 ao. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3219 b3059339-0415-0410-9bf9-f77b7e298cf2
* Support for YV12 with DXR3, patch by D. Holm.atmos42001-11-291-44/+44
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3209 b3059339-0415-0410-9bf9-f77b7e298cf2
* Newest DXR3 patch (improved 1.0rc2) by David Holm.atmos42001-11-291-401/+135
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3202 b3059339-0415-0410-9bf9-f77b7e298cf2
* Patch by D. Holm to make audio with dxr3 working.atmos42001-11-281-8/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3187 b3059339-0415-0410-9bf9-f77b7e298cf2
* Minor fixes by David.atmos42001-11-181-83/+52
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2969 b3059339-0415-0410-9bf9-f77b7e298cf2
* dxr3-patch4 by David Holmarpi2001-11-161-40/+86
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2922 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added a temporary fix to the DXR3 win32 codec playback, win32 codecs might ↵mswitch2001-11-131-36/+172
| | | | | | prove to play back an unscaled image! git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2867 b3059339-0415-0410-9bf9-f77b7e298cf2
* DXR3 beta2 patch by David Holm.atmos42001-11-081-48/+220
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2771 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move yuv2rgb to postprocessnick2001-11-061-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2733 b3059339-0415-0410-9bf9-f77b7e298cf2
* ao_dxr3 by David Holm <dholm@telia.com>arpi2001-11-031-0/+331
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2646 b3059339-0415-0410-9bf9-f77b7e298cf2