summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Removed the historic cfgparser and switched full to the new config parser ↵alex2003-08-1335-2003/+109
| | | | | | (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10595 b3059339-0415-0410-9bf9-f77b7e298cf2
* v4l2 checkhenry2003-08-131-0/+22
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10594 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix a 10l and add escaped filename support. Needed by ftp.albeu2003-08-131-1/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10593 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix -cdrom-device to work again with cdda and vcd.albeu2003-08-132-2/+20
| | | | | | | Based on patch from Arwed von Merkatz. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10592 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1000l, thanks Pierrealex2003-08-131-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10591 b3059339-0415-0410-9bf9-f77b7e298cf2
* added live.com to (no)inputmodulesalex2003-08-121-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10590 b3059339-0415-0410-9bf9-f77b7e298cf2
* update, againalex2003-08-121-2/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10589 b3059339-0415-0410-9bf9-f77b7e298cf2
* moved lot of global variables into static ones (and some minor spelling fixes)alex2003-08-121-28/+28
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10588 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added DR support to vo_fbdev,joey2003-08-121-9/+0
| | | | | | | time to remove fbdev=nocopy from configure. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10587 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync (Real Win32 vs Linux codec clarification)nauj272003-08-121-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10586 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync ('tinterlace' filter)nauj272003-08-121-0/+21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10585 b3059339-0415-0410-9bf9-f77b7e298cf2
* some updatesalex2003-08-121-17/+32
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10584 b3059339-0415-0410-9bf9-f77b7e298cf2
* min/max float->doublearpi2003-08-122-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10583 b3059339-0415-0410-9bf9-f77b7e298cf2
* From: Kir Kostuchenko <kir@users.sourceforge.net>gabucino2003-08-121-8/+7
| | | | | | | | | | | Hi, I found that command line options brightness, hue, contrast and saturation does not works, becouse mplayer apply it, before open tv (kernel says invalid ioctl). Here are simple fix. Please apply. This is the correct patch, sorry for the confusion. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10582 b3059339-0415-0410-9bf9-f77b7e298cf2
* reverse of accidently twice commited patch (non-unified patch suxx)gabucino2003-08-124-32/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10581 b3059339-0415-0410-9bf9-f77b7e298cf2
* From: Kir Kostuchenko <kir@users.sourceforge.net>gabucino2003-08-124-0/+32
| | | | | | | | | Hi, I found that command line options brightness, hue, contrast and saturation does not works, becouse mplayer apply it, before open tv (kernel says invalid ioctl). Here are simple fix. Please apply. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10580 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
* Hi, here are slave commands:gabucino2003-08-124-0/+32
| | | | | | | | | | | | tv_set_brightness tv_set_contrast tv_set_hue tv_set_color Patch by Kir Kostuchenko <kir@users.sourceforge.net> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10578 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
* Real Win32 vs Linux codec clarification.diego2003-08-122-2/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10576 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync by Andriy N. Gritsenko <andrej@lucky.net>diego2003-08-111-20/+348
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10575 b3059339-0415-0410-9bf9-f77b7e298cf2
* replacing old MPlayer logo for the much nicer OSX versiongabucino2003-08-111-213/+1225
| | | | | | | (AFAIK currently used only for Gentoo desktop icon, maybe other distribs also) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10574 b3059339-0415-0410-9bf9-f77b7e298cf2
* Simplified/fixed altivec/altivec.h detection on Linux and Darwin (and ↵alex2003-08-114-21/+5
| | | | | | others). Patch by Magnus Damm <damm@opensource.se> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10573 b3059339-0415-0410-9bf9-f77b7e298cf2
* 'tinterlace' filter (partial inverse of tfields) by Not Zed ↵alex2003-08-114-1/+204
| | | | | | <notzed@ximian.com> (with minor fixes for current cvs by me) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10572 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l (and fixes some wmaker issues)alex2003-08-111-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10571 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync with englishnauj272003-08-111-49/+80
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10570 b3059339-0415-0410-9bf9-f77b7e298cf2
* dvbin fix by Nico <nsabbi@libero.it>alex2003-08-111-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10569 b3059339-0415-0410-9bf9-f77b7e298cf2
* typodiego2003-08-111-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10568 b3059339-0415-0410-9bf9-f77b7e298cf2
* eh too earlygabucino2003-08-111-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10567 b3059339-0415-0410-9bf9-f77b7e298cf2
* syncgabucino2003-08-111-3/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10566 b3059339-0415-0410-9bf9-f77b7e298cf2
* syncgabucino2003-08-111-22/+65
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10565 b3059339-0415-0410-9bf9-f77b7e298cf2
* style fixgabucino2003-08-111-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10564 b3059339-0415-0410-9bf9-f77b7e298cf2
* Moved -slices to cfg-common.h.diego2003-08-113-11/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10563 b3059339-0415-0410-9bf9-f77b7e298cf2
* syncdiego2003-08-111-50/+85
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10562 b3059339-0415-0410-9bf9-f77b7e298cf2
* this patch fixesarpi2003-08-117-571/+656
| | | | | | | | | | | | | 1) some bugs introduced in the tuner autodetection and in the channel-parsing functions, 3) retries reading when the mplayer/mencoder don't read fast enough (sooner it exited) but especially 4) makes the stream compliant with the new, modular stream api (the one currently in CVS is not and is totally unreachable). [and maybe more, next time please include cvslog in patch! -- A'rpi] patch by Nico <nsabbi@libero.it> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10561 b3059339-0415-0410-9bf9-f77b7e298cf2
* new Windows section with Cygwin and MinGW subsectionsdiego2003-08-101-21/+66
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10560 b3059339-0415-0410-9bf9-f77b7e298cf2
* Spanish translation by Juan Martín López <nauj27@teleline.es>nauj272003-08-101-0/+329
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10559 b3059339-0415-0410-9bf9-f77b7e298cf2
* Prevent missing subtitles at pts reset.ranma2003-08-101-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10558 b3059339-0415-0410-9bf9-f77b7e298cf2
* libdvdread-cvs support, patch by Steven M. Schultz <sms@2BSD.COM>alex2003-08-101-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10557 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10lalex2003-08-101-2/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10556 b3059339-0415-0410-9bf9-f77b7e298cf2
* more variantsgabucino2003-08-102-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10555 b3059339-0415-0410-9bf9-f77b7e298cf2
* how to put subtitles in output filegabucino2003-08-102-0/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10554 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove debug messagenexus2003-08-091-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10553 b3059339-0415-0410-9bf9-f77b7e298cf2
* another attempt to fix the subtitle searchinghenry2003-08-091-6/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10552 b3059339-0415-0410-9bf9-f77b7e298cf2
* For a request by Gabu, i've cut & fix a part of Joey's dvd aid switchinggabucino2003-08-092-3/+5
| | | | | | | | | | | patch, to always use the first audio track of DVD, unless -alang or -aid is used. I think it will be almost always teh id 128. (actual number comes from the .IFO) (reported ok - Gabu) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10551 b3059339-0415-0410-9bf9-f77b7e298cf2
* OSD menu should not be confused with DVD menus.diego2003-08-091-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10550 b3059339-0415-0410-9bf9-f77b7e298cf2
* This is in sync...diego2003-08-091-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10549 b3059339-0415-0410-9bf9-f77b7e298cf2
* updates by Ioannis Panteleakisdiego2003-08-091-11/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10548 b3059339-0415-0410-9bf9-f77b7e298cf2
* address bouncesdiego2003-08-091-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10547 b3059339-0415-0410-9bf9-f77b7e298cf2
* path fixesdiego2003-08-091-8/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10546 b3059339-0415-0410-9bf9-f77b7e298cf2
* some more cola - misplaced breakhenry2003-08-081-8/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10545 b3059339-0415-0410-9bf9-f77b7e298cf2
* some updates (all shown by help_diff.sh)...jonas2003-08-081-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10544 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix the bug where only the last file of the command line is foundpl2003-08-081-8/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10543 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo fix by DongCheon Park <dcpark@kaist.ac.kr>diego2003-08-081-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10542 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync by Juan Martin <nauj27@teleline.es>diego2003-08-071-3/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10541 b3059339-0415-0410-9bf9-f77b7e298cf2
* support for raw DV >2Gbgabucino2003-08-071-1/+1
| | | | | | | patch by Pierre Beyssac <pb@fasterix.frmug.org> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10540 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l - some forgotten ifdefshenry2003-08-073-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10539 b3059339-0415-0410-9bf9-f77b7e298cf2
* v4l2 supporthenry2003-08-0710-10/+72
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10538 b3059339-0415-0410-9bf9-f77b7e298cf2
* v4l2 supporthenry2003-08-072-0/+2484
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10537 b3059339-0415-0410-9bf9-f77b7e298cf2
* (nonworking) dvdnav commented out as discussed on dev-eng.diego2003-08-061-63/+57
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10536 b3059339-0415-0410-9bf9-f77b7e298cf2
* (Almost) cosmetic update, taken from fsf.org.diego2003-08-061-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10535 b3059339-0415-0410-9bf9-f77b7e298cf2
* syncgabucino2003-08-061-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10534 b3059339-0415-0410-9bf9-f77b7e298cf2
* make debian devels happy (ok, that's impossible, I know:)gabucino2003-08-061-0/+340
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10533 b3059339-0415-0410-9bf9-f77b7e298cf2
* _win32libdir (not _libdir/win32) should be searched after other locations.diego2003-08-051-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10532 b3059339-0415-0410-9bf9-f77b7e298cf2
* whitespace cosmeticsdiego2003-08-051-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10531 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync and improvements by Tomas Blaha <tomasb@kapsa.club.cz>diego2003-08-051-230/+233
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10530 b3059339-0415-0410-9bf9-f77b7e298cf2
* Path fixed.diego2003-08-051-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10529 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync by Juan Martin <nauj27@teleline.es>diego2003-08-051-11/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10528 b3059339-0415-0410-9bf9-f77b7e298cf2
* Hint fixed up and synched to XML.diego2003-08-052-5/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10527 b3059339-0415-0410-9bf9-f77b7e298cf2
* dvd:// corrected to -dvdauth as outlined by LGB on dev-eng + rewording.diego2003-08-041-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10526 b3059339-0415-0410-9bf9-f77b7e298cf2
* spelling correctionsdiego2003-08-041-11/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10525 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document softpulldown filter.ranma2003-08-041-0/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10524 b3059339-0415-0410-9bf9-f77b7e298cf2
* vsynced GL output (hint from Spacecake <spacecake@diaryland.com>)gabucino2003-08-042-0/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10523 b3059339-0415-0410-9bf9-f77b7e298cf2
* I'd like to change tv tuner frequency in the slave mode. So this patchgabucino2003-08-046-21/+56
| | | | | | | | | helps me. Patch by Kir Kostuchenko <kir@users.sourceforge.net> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10522 b3059339-0415-0410-9bf9-f77b7e298cf2
* FourCC is the preferred spelling according to iive and arpi.diego2003-08-041-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10521 b3059339-0415-0410-9bf9-f77b7e298cf2
* warning for users who insist on trying to enable dvdnavrfelker2003-08-041-1/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10520 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixes and syncdiego2003-08-031-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10519 b3059339-0415-0410-9bf9-f77b7e298cf2
* -noslices support for mencoder. ugly hack, but vf_crop and vf_expandrfelker2003-08-031-0/+6
| | | | | | | are super buggy with slices enabled... :(( git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10518 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed obsolete my_profilealex