summaryrefslogtreecommitdiffstats
path: root/gui
Commit message (Collapse)AuthorAgeFilesLines
* get/set video colors string is constantreimar2007-12-021-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25252 b3059339-0415-0410-9bf9-f77b7e298cf2
* Mark several uses of vo_functions_t as const to stop some of the currentreimar2007-12-021-1/+1
| | | | | | | hacks e.g. in vidix code from spreading. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25247 b3059339-0415-0410-9bf9-f77b7e298cf2
* Better handling of win32 GUI thread:zuxy2007-11-111-6/+8
| | | | | | | | | | | 1. Use _beginthreadex to create the GUI thread to avoid possible memory leak when linked to MS CRT. 2. Terminate the GUI thread in an cleaner way using PostThreadMessage() rather than the unrecommended TerminateThread(). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25020 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unused extern int declaration.diego2007-08-291-1/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24289 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clean up the way get_path is handled: Compile get_path.c to an object to linkdiego2007-08-283-2/+2
| | | | | | | | against instead of directly #including the C file and replace the many extern declarations by a proper header file. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24262 b3059339-0415-0410-9bf9-f77b7e298cf2
* warning fix:diego2007-08-281-1/+1
| | | | | | | | mplayer/common.c: In function 'PutImage': mplayer/common.c:188: warning: unused variable 'yc' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24256 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove redundant extern declarations, #include the right headers instead.diego2007-08-253-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24173 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove redundant extern variable declarations, include proper headers instead.diego2007-08-253-3/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24169 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unused extern variable declaration.diego2007-08-241-1/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24133 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove redundant variable declaration along with the corresponding warning.diego2007-08-241-1/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24132 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1000l: Revert stray hunk that crept in with last commit.diego2007-08-241-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24131 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use consistent include path.diego2007-08-241-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24130 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove gconvert_uri_to_filename() and use url_unescape_string() instead.iive2007-08-203-51/+2
| | | | | | | | | | | | | | reasons: * gconvert strdup()s the original string, but it may exit without returning or freeing it. * gconvert returns the original pointer when no % escaping is done. It is then free()ed and used in that state. * gconvert doesn't consider that % may be at the end of the string and could continue parsing past the end. * gconvert would try to free() pointer that iconv() have modified. * gconvert would try to convert filenames from utf-8 to iso8859-1. Seems like no other DnD programs convert to utf-8 and/or honors CHARSET. Not converting seems to work best. Fix it if problem arises. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24106 b3059339-0415-0410-9bf9-f77b7e298cf2
* fopen is in stdio.h, so add this include.reimar2007-07-181-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23816 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix a bunch of redundant redeclaration warnings.diego2007-07-1810-23/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23815 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unused variables.diego2007-07-181-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23814 b3059339-0415-0410-9bf9-f77b7e298cf2
* ISO8859-1 --> UTF-8diego2007-07-091-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23754 b3059339-0415-0410-9bf9-f77b7e298cf2
* Avoid code duplication and ugly config.h hack by using av_strlcat/av_strlcpyreimar2007-07-053-55/+58
| | | | | | | instead of plain strlcat/strlcpy git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23723 b3059339-0415-0410-9bf9-f77b7e298cf2
* Do not use leading underscores in multiple inclusion guards, they are reserved.diego2007-07-0229-59/+61
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23709 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add consistent GUI prefix to multiple inclusion guards.diego2007-07-0221-43/+43
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23705 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add multiple inclusion guard.diego2007-07-021-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23704 b3059339-0415-0410-9bf9-f77b7e298cf2
* Consistently use filenames as multiple inclusion guards.diego2007-07-029-18/+18
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23703 b3059339-0415-0410-9bf9-f77b7e298cf2
* Return value of gtk_entry_get_text is const, so declare variables as const ↵reimar2007-06-241-4/+4
| | | | | | as well. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23644 b3059339-0415-0410-9bf9-f77b7e298cf2
* revert broken r23628, mp_core.h is not included by cfg.h, so double externreimar2007-06-241-0/+1
| | | | | | | declaration is not that simple to avoid. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23641 b3059339-0415-0410-9bf9-f77b7e298cf2
* get_path prototype is already in interface.h and probably many more places.reimar2007-06-241-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23640 b3059339-0415-0410-9bf9-f77b7e298cf2
* ass_enabled is already in mp_core.hreimar2007-06-241-1/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23628 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a (almost correct) prototype for vcd_seek_to_trackreimar2007-06-241-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23623 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix compilation after FFmpeg r9283.cehoyos2007-06-121-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23546 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace implicit use of fast_memcpy via macro by explicit use to allowreimar2007-06-052-2/+2
| | | | | | | for future optimization. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23475 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make gmplayer show right colors if X server does not use native byteorder.reimar2007-06-051-1/+30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23471 b3059339-0415-0410-9bf9-f77b7e298cf2
* get rid of Gui code that has been commented out since agesreimar2007-06-041-20/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23464 b3059339-0415-0410-9bf9-f77b7e298cf2
* Factor out some duplicated gui codereimar2007-06-041-15/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23463 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove some useless codereimar2007-06-041-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23462 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove two useless fastmemcpy.h includes in gui code.reimar2007-05-272-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23392 b3059339-0415-0410-9bf9-f77b7e298cf2
* missed part of gui code change while introducing -subfont option (patch by ↵ben2007-05-201-1/+1
| | | | | | Piotr Kaczuba) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23359 b3059339-0415-0410-9bf9-f77b7e298cf2
* Include string.h for memcpy, fastmemcpy.h alone is not enough.reimar2007-05-164-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23323 b3059339-0415-0410-9bf9-f77b7e298cf2
* Reuse linux code for reading png images for windows Gui,reimar2007-05-102-53/+19
| | | | | | thus also removing libpng dependency git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23284 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove unused codereimar2007-05-071-8/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23244 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix Gui colors for 32 bit png images after switch to libavcodec decodingreimar2007-05-071-8/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23243 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use calloc instead of malloc+memsetreimar2007-05-021-2/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23218 b3059339-0415-0410-9bf9-f77b7e298cf2
* Missing free on error in conv24to32reimar2007-05-021-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23217 b3059339-0415-0410-9bf9-f77b7e298cf2
* Simplify bgr2rgbreimar2007-05-021-6/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23216 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unused functionreimar2007-05-021-26/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23215 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make functions and variables not used outside bitmap.c staticreimar2007-05-022-9/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23214 b3059339-0415-0410-9bf9-f77b7e298cf2
* Simplify conv24to32 for-loopreimar2007-05-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23213 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove useless extern before function prototypesreimar2007-05-021-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23212 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove libpng dependency for Gui, use libavcodec insteadreimar2007-05-021-69/+42
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23211 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l to Diego for breaking svn (again).iive2007-04-301-5/+0
| | | | | | | | | revert the change from r23172, that breaks compilation vcd_read.h may not be the right incude for the given architecture, but it also contains functions that are nor static nor inlined, defining them multiple times. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23176 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix several implicit declarations of functions warnings.diego2007-04-299-3/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23172 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove duplicate #include.diego2007-04-291-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23171 b3059339-0415-0410-9bf9-f77b7e298cf2
* add missing case value, fixes functionality when using some skins.vayne2007-04-281-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23166 b3059339-0415-0410-9bf9-f77b7e298cf2
* compilation fix for disabling dvd functionality, patch by <bangbangbear at ↵vayne2007-04-282-6/+6
| | | | | | gmail dot com>, slightly modified by me. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23165 b3059339-0415-0410-9bf9-f77b7e298cf2
* header / declarations cleanup, also fixes broken compilation.vayne2007-04-264-18/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23141 b3059339-0415-0410-9bf9-f77b7e298cf2
* Consistently use quotes instead of angled brackets in #includediego2007-04-259-51/+55
| | | | | | | statements for non-system headers. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23109 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use proper GPL header.diego2007-04-2313-247/+273
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23097 b3059339-0415-0410-9bf9-f77b7e298cf2
* spelling cosmeticsdiego2007-04-2314-17/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23096 b3059339-0415-0410-9bf9-f77b7e298cf2
* Gui --> guidiego2007-04-23119-0/+27739
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23095 b3059339-0415-0410-9bf9-f77b7e298cf2