summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix a ton of illegal identifiers. Identifiers starting with __ or _ and adiego2008-01-2044-347/+347
| | | | | | | | capital letter are reserved for the system, those starting with _ are reserved at the file level. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25822 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added missing single quotation mark.cehoyos2008-01-201-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25821 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix compilation failue:ulion2008-01-201-0/+1
| | | | | | | | | | stream_cddb.c: In function 'cddb_read_cache': stream_cddb.c:341: error: 'UINT_MAX' undeclared (first use in this function) stream_cddb.c:341: error: (Each undeclared identifier is reported only once stream_cddb.c:341: error: for each function it appears in.) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25820 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix vobsub_seek use same reseek method as vobsub_get_packet did.ulion2008-01-201-12/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25819 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix auto-sub code to support filenames with any extension length.ulion2008-01-201-4/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25818 b3059339-0415-0410-9bf9-f77b7e298cf2
* Allow overriding the codec_tag for audio codecs, and always override rtogni2008-01-201-3/+13
| | | | | | | | | | codec_tag for PCM codecs (codec_id from lavf is correct, but the codec_tag may be non-zero and wrong). Also fixes bugzilla #983 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25817 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fragment programs must use unix eol.reimar2008-01-200-0/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25816 b3059339-0415-0410-9bf9-f77b7e298cf2
* Avoid some pointer conversion warnings (the code is messy but not wrong)reimar2008-01-201-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25815 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing vo_w32_border prototypereimar2008-01-201-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25814 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix some function types from unspecified to empty argument listreimar2008-01-201-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25813 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove redundant declarations (already in video_out.h)reimar2008-01-201-5/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25812 b3059339-0415-0410-9bf9-f77b7e298cf2
* Extend the precision of rationale conversion soiive2008-01-191-1/+1
| | | | | | | | | | it would give proper result for framerate 60000/1001 . Otherwise framerate restrained encoders like lavc mpeg2video would refuse to encode, even if -ofps 60000/1001 is given. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25811 b3059339-0415-0410-9bf9-f77b7e298cf2
* -panscan should also work for right and left bordersreimar2008-01-191-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25810 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some reindentationreimar2008-01-191-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25809 b3059339-0415-0410-9bf9-f77b7e298cf2
* Reindentreimar2008-01-191-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25808 b3059339-0415-0410-9bf9-f77b7e298cf2
* Simplify and keep terminating end-of-linereimar2008-01-191-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25807 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove a broken and useless hack to avoid a memcpyreimar2008-01-191-3/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25806 b3059339-0415-0410-9bf9-f77b7e298cf2
* Cached file must be 0-terminated since we use string processing functions on itreimar2008-01-191-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25805 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make sure we do not write the terminating 0 out of boundsreimar2008-01-191-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25804 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing #include, fixes the warning:diego2008-01-191-0/+1
| | | | | | | dshow/mediatype.c:89: warning: implicit declaration of function 'vo_format_name' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25803 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use ld conversion specifier for long int argument, fixes the warning:diego2008-01-191-1/+1
| | | | | | | dshow/outputpin.c:754: warning: format '%d' expects type 'int', but argument 3 has type 'long int' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25802 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing #include, fixes the warning:diego2008-01-191-0/+1
| | | | | | | elfdll.c:106: warning: implicit declaration of function 'TRACE' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25801 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix endless loop if nAvgBytesPerSec is 0.reimar2008-01-191-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25800 b3059339-0415-0410-9bf9-f77b7e298cf2
* Avoid a division by 0 if i_bps is 0.reimar2008-01-191-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25799 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix usage example commentreimar2008-01-191-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25798 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix a coefficient for lscale=5 OpenGL modereimar2008-01-191-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25797 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add name to email address.diego2008-01-191-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25796 b3059339-0415-0410-9bf9-f77b7e298cf2
* Avoid warning:reimar2008-01-191-1/+1
| | | | | | | vf_detc.c:273: warning: ‘dropflag’ may be used uninitialized in this function git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25795 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix some types to constreimar2008-01-191-5/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25794 b3059339-0415-0410-9bf9-f77b7e298cf2
* audio_out / video_out structs should be treated as constreimar2008-01-194-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25793 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix warning:reimar2008-01-191-1/+1
| | | | | | | vo_directfb2.c:553: warning: passing argument 2 of ‘dfb->EnumVideoModes’ from incompatible pointer type git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25792 b3059339-0415-0410-9bf9-f77b7e298cf2
* Avoid void* arithmeticreimar2008-01-191-15/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25791 b3059339-0415-0410-9bf9-f77b7e298cf2
* Simplify and silence lots of warningsreimar2008-01-191-29/+29
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25790 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add the edge-enhancement filter based on edgedetect I had lying around.reimar2008-01-191-0/+38
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25789 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix using both lscale and cscale 4reimar2008-01-191-15/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25788 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r25786gpoirier2008-01-181-9/+66
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25787 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a fragment program for 5x5 unsharp maskingreimar2008-01-183-0/+37
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25786 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove leftover backslashreimar2008-01-181-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25785 b3059339-0415-0410-9bf9-f77b7e298cf2
* Simplifyreimar2008-01-181-6/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25784 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use the same unsharp filter template for 2D and RECT texturesreimar2008-01-181-32/+21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25783 b3059339-0415-0410-9bf9-f77b7e298cf2
* Small typo in messagereimar2008-01-181-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25782 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove broken test program that likely never worked.diego2008-01-181-26/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25781 b3059339-0415-0410-9bf9-f77b7e298cf2
* Change (a == NULL) condition to (!a) and (a != NULL) condition to (a).benoit2008-01-173-19/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25780 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove some useless parentheses.benoit2008-01-173-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25779 b3059339-0415-0410-9bf9-f77b7e298cf2
* Cosmetics: whitespacesbenoit2008-01-176-69/+69
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25778 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove non cosmetic spaces inside parentheses.benoit2008-01-176-31/+31
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25777 b3059339-0415-0410-9bf9-f77b7e298cf2
* Description: remove superfluous parentheses.benoit2008-01-171-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25776 b3059339-0415-0410-9bf9-f77b7e298cf2
* Check param in sws_getCachedContext().benoit2008-01-171-1/+6
| | | | | | | | | Patch by KO Myung-Hun komh chollian net Original thread: [FFmpeg-devel] [PATCH] param check in sws_getCachedContext() Date: Wed Jan 9 11:15:19 CET 2008 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25775 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix code to prevent from accessing queue->packets[-1].pts that causes a crash.ulion2008-01-171-2/+1
| | | | | | | Found and patched by Reimar. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25774 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix OpenGL unsharp filterreimar2008-01-161-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25773 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo fixdiego2008-01-163-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25772 b3059339-0415-0410-9bf9-f77b7e298cf2
* VIDIX is no longer a shared library.diego2008-01-161-5/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25771 b3059339-0415-0410-9bf9-f77b7e298cf2
* URL updates for contributed win32 stuff.diego2008-01-161-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25770 b3059339-0415-0410-9bf9-f77b7e298cf2
* better ao/vo profile examplesdiego2008-01-161-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25769 b3059339-0415-0410-9bf9-f77b7e298cf2
* misc markup fixesdiego2008-01-161-7/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25768 b3059339-0415-0410-9bf9-f77b7e298cf2
* misc spelling fixesdiego2008-01-161-13/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25767 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed a english part, left in here, sighptt2008-01-151-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25766 b3059339-0415-0410-9bf9-f77b7e298cf2
* little grammar fixptt2008-01-151-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25765 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r25757ptt2008-01-151-7/+79
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25764 b3059339-0415-0410-9bf9-f77b7e298cf2
* added missing "&"ptt2008-01-151-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25763 b3059339-0415-0410-9bf9-f77b7e298cf2
* added missing escapesptt2008-01-151-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25762 b3059339-0415-0410-9bf9-f77b7e298cf2
* syncet to r25663ptt2008-01-151-1/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25761 b3059339-0415-0410-9bf9-f77b7e298cf2
* updated my mail addressptt2008-01-152-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25760 b3059339-0415-0410-9bf9-f77b7e298cf2
* add default deinterlace keycompn2008-01-151-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25759 b3059339-0415-0410-9bf9-f77b7e298cf2
* Create/allocate conversion textures before scaler textures.reimar2008-01-151-2/+2
| | | | | | | Allows overriding gamma ramp texture also when using a non-trivial scaler. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25758 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add experimental unsharp-mask OpenGL scaler. Certainly not yet perfect.reimar2008-01-154-0/+39
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25757 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document vo gl lscale=3reimar2008-01-152-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25756 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a forgotten case to create_scaler_textures, avoids an incorrect warning.reimar2008-01-151-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25755 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove a useless castreimar2008-01-151-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25754 b3059339-0415-0410-9bf9-f77b7e298cf2
* The GUI requires font support.diego2008-01-141-0/+2
| | | | | | | patch by Guillaume Lecerf, foxcore gmail com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25753 b3059339-0415-0410-9bf9-f77b7e298cf2
* Seems that all - should be escaped in the man pagereimar2008-01-141-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25752 b3059339-0415-0410-9bf9-f77b7e298cf2
* Extend heartbeat-cmd man page entryreimar2008-01-141-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25751 b3059339-0415-0410-9bf9-f77b7e298cf2
* Simplify/cleanup of real_calc_response_and_checksum()rtogni2008-01-131-8/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25750 b3059339-0415-0410-9bf9-f77b7e298cf2
* Don't oversize realchallenge buffersrtogni2008-01-131-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25749 b3059339-0415-0410-9bf9-f77b7e298cf2
* Put bff_mask into muxer context instead of a global variable.reimar2008-01-131-6/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25748 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix the bug where the window would become smaller each time vo_ontop is toggled.reimar2008-01-131-3/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25747 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make some radeon vidix driver tables static and constreimar2008-01-131-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25746 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make mp_properties constreimar2008-01-131-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25745 b3059339-0415-0410-9bf9-f77b7e298cf2
* All the m_property stuff works fine with constant m_option_treimar2008-01-132-34/+34
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25744 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make xpm arrays really const (I missed that they are not strings butreimar2008-01-1352-52/+52
| | | | | | | array of strings (string pointers)). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25743 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make all gui xpm bitmaps constreimar2008-01-137-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25742 b3059339-0415-0410-9bf9-f77b7e298cf2
* gui_opts should be const for win32 gui as well (why, oh why, was allreimar2008-01-131-1/+1
| | | | | | | this code duplicated??). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25741 b3059339-0415-0410-9bf9-f77b7e298cf2
* Win32 gui has the same m_option_print error handling bugreimar2008-01-131-2/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25740 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix 100l: error check