Mercurial > mplayer.hg
changeset 25596:02f913fa8ddd
Remove changelog from file header, we have revision control for this.
author | diego |
---|---|
date | Sun, 06 Jan 2008 12:58:02 +0000 |
parents | 88e8649d97e0 |
children | 85ca3ea69e03 |
files | libvo/vo_dxr3.c libvo/vo_sdl.c |
diffstat | 2 files changed, 0 insertions(+), 156 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/vo_dxr3.c Sun Jan 06 12:57:26 2008 +0000 +++ b/libvo/vo_dxr3.c Sun Jan 06 12:58:02 2008 +0000 @@ -5,116 +5,6 @@ * */ -/* ChangeLog added 2002-01-10 - * 2003-11-28: - * Added a patch from Anders Rune Jensen to support the latest em8300 CVS - * changes. - * - * 2003-02-19: - * Yet another patch from Tamas Kohegyi to fix subpic placement. - * - * 2003-01-12: - * Added patch from Tamas Kohegyi to fix subpic placement with freetype. - * - * 2003-01-02: - * Added patch from Jens Axboe that makes vo_dxr3 return to previous TV norm - * after quiting. - * Added patch from Thomas Jarosch that fixed a lot of textual ouput - * errors. - * - * 2002-12-24: (Hohoho) - * Added patch from Thomas Jarosch <tomj@simonv.com> which adds support - * for setting the TV norm by movie framerate. - * - * 2002-11-03: - * Cleaned up syncing code and renamed setup variables so - * they can be accessed from the GUI. - * - * 2002-11-02: - * Added native overlay support, activate with :overlay - * you have to run dxr3view to modify settings (or manually - * edit the files in ~/.overlay. - * - * 2002-10-29: - * Added new sync-engine, activate with :sync option. - * Greatly improved commandline parser. - * Replaced :noprebuf with :prebuf and made noprebuf the default. - * - * 2002-10-28: - * Fixed multicard bug on athlons - * - * 2002-07-18: - * Disabled spuenc support, this is still not stable enough =( - * - * 2002-07-05: - * Removed lavc and fame encoder to be compatible with new libvo style. - * Added graphic equalizer support. - * - * 2002-04-15: - * The spuenc code isn't 100% stable yet, therefore I'm disabling - * it due to the upcoming stable release. - * - * 2002-04-03: - * Carl George added spuenc support - * - * 2002-03-26: - * XorA added an option parser and support for selecting encoder - * codec. We thank him again. - * - * 2002-03-25: - * A couple of bugfixes by XorA - * - * 2002-03-23: - * Thanks to Marcel Hild <hild@b4mad.net> the jitter-bug experienced - * with some videos have been fixed, many thanks goes to him. - * - * 2002-03-16: - * Fixed problems with fame, it gives a better picture than avcodec, - * but is slightly slower. Most notably the wobbling effect is gone - * with fame. - * - * 2002-03-13: - * Preliminary fame support added (it breaks after seeking, why?) - * - * 2002-02-18: - * Fixed sync problems when pausing video (while using prebuffering) - * - * 2002-02-16: - * Fixed bug which would case invalid output when using :noprebuf - * Removed equalization code, it caused problems on slow systems - * - * 2002-02-13: - * Using the swscaler instead of the old hand coded shit. (Checkout man mplayer and search for sws ;). - * Using aspect function to setup a proper mpeg1, no more hassling with odd resolutions or GOP-sizes, - * this would only create jitter on some vids! - * The swscaler sometimes exits with sig8 on mpegs, I don't know why yet (just use -vc mpegpes in this - * case, and report to me if you have any avi's etc which does this...) - * - * 2002-02-09: - * Thanks to the new control() method I have finally been able to enable the em8300 prebuffering. - * This should speed up playback on all systems, the vout cpu usage should rocket since I will be hogging - * the pci bus. Not to worry though, since frames are prebuffered it should be able to take a few blows - * if you start doing other stuff simultaneously. - * - * 2002-02-03: - * Removal of libmp1e, libavcodec has finally become faster (and it's code is helluva lot cleaner) - * - * 2002-02-02: - * Cleaned out some old code which might have slowed down writes - * - * 2002-01-17: - * Testrelease of new sync engine (using previously undocumented feature of em8300). - * - * 2002-01-15: - * Preliminary subpic support with -vc mpegpes and dvd's - * Device interfaces tries the new naming scheme by default (even though most users probably still use the old one) - * - * 2002-01-10: - * I rehauled the entire codebase. I have now changed to - * Kernighan & Ritchie codingstyle, please mail me if you - * find any inconcistencies. - */ - #include <linux/em8300.h> #include <sys/ioctl.h> #include <sys/stat.h>
--- a/libvo/vo_sdl.c Sun Jan 06 12:57:26 2008 +0000 +++ b/libvo/vo_sdl.c Sun Jan 06 12:58:02 2008 +0000 @@ -40,52 +40,6 @@ * the Free Software Foundation. * * -- end old disclaimer -- - * - * Changes: - * Dominik Schnitzer <dominik@schnitzer.at> - November 08, 2000. - * - Added resizing support, fullscreen: changed the sdlmodes selection - * routine. - * - SDL bugfixes: removed the atexit(SLD_Quit), SDL_Quit now resides in - * the plugin_exit routine. - * - Commented the source :) - * - Shortcuts: for switching between Fullscreen/Windowed mode and for - * cycling between the different Fullscreen modes. - * - Small bugfixes: proper width/height of movie - * Dominik Schnitzer <dominik@schnitzer.at> - November 11, 2000. - * - Cleanup code, more comments - * - Better error handling - * Bruno Barreyra <barreyra@ufl.edu> - December 10, 2000. - * - Eliminated memcpy's for entire frames - * Felix Buenemann <Atmosfear@users.sourceforge.net> - March 11, 2001 - * - Added aspect-ratio awareness for fullscreen - * Felix Buenemann <Atmosfear@users.sourceforge.net> - March 11, 2001 - * - Fixed aspect-ratio awareness, did only vertical scaling (black bars above - * and below), now also does horizontal scaling (black bars left and right), - * so you get the biggest possible picture with correct aspect-ratio. - * Felix Buenemann <Atmosfear@users.sourceforge.net> - March 12, 2001 - * - Minor bugfix to aspect-ratio for non-4:3-resolutions (like 1280x1024) - * - Bugfix to check_events() to reveal mouse cursor after 'q'-quit in - * fullscreen-mode - * Felix Buenemann <Atmosfear@users.sourceforge.net> - April 10, 2001 - * - Changed keypress-detection from keydown to keyup, seems to fix keyrepeat - * bug (key had to be pressed twice to be detected) - * - Changed key-handling: 'f' cycles fullscreen/windowed, ESC/RETURN/'q' quits - * - Bugfix which avoids exit, because return is passed to sdl-output on startup, - * which caused the player to exit (keyboard-buffer problem? better solution - * recommed) - * Felix Buenemann <Atmosfear@users.sourceforge.net> - April 11, 2001 - * - OSD and subtitle support added - * - some minor code-changes - * - added code to comply with new fullscreen meaning - * - changed fullscreen-mode-cycling from '+' to 'c' (interferred with audiosync - * adjustment) - * Felix Buenemann <Atmosfear@users.sourceforge.net> - April 13, 2001 - * - added keymapping to toggle OSD ('o' key) - * - added some defines to modify some sdl-out internas (see comments) - * - * Felix Buenemann: further changes will be visible through cvs log, don't want - * to update this all the time (CVS info on http://mplayer.sourceforge.net) - * */ /* define to force software-surface (video surface stored in system memory)*/