summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* synced with r24016Gabrov2007-08-072-21/+33
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24017 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added Alan Nisotas modify_reg.cehoyos2007-08-063-0/+203
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24016 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r23996gpoirier2007-08-051-28/+77
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24015 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move alloc_mpi and copy_mpi from libmenu/vf_menu.c to libmpcodecs/mp_image.c.cehoyos2007-08-044-54/+69
| | | | | | | Patch by Attila Ötvös. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24014 b3059339-0415-0410-9bf9-f77b7e298cf2
* Moved dvdtimetomsec to stream_dvd_common.c.cehoyos2007-08-044-23/+27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24013 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unused variables.diego2007-08-041-4/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24012 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: removed commented code and small reindentationnicodvb2007-08-041-4/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24011 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed unused variablesnicodvb2007-08-041-6/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24010 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a dummy guiMessageBox so it still compiles when MPlayer was configured withreimar2007-08-041-0/+2
| | | | | | | --enable-gui git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24009 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix compilation of ass_fontconfig.c when fontconfig is disabled.iive2007-08-041-1/+2
| | | | | | | Add missing parameter to the function in the #else case git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24008 b3059339-0415-0410-9bf9-f77b7e298cf2
* Handle case where get_image is called twice without a draw_image in-betweenreimar2007-08-031-1/+6
| | | | | | | (-vc ffmpeg12 seems to do this sometimes). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24007 b3059339-0415-0410-9bf9-f77b7e298cf2
* Give the cpuinfo binary the right suffix $_exesufreimar2007-08-031-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24006 b3059339-0415-0410-9bf9-f77b7e298cf2
* Forgot to add the main vo_xvr100.c filereimar2007-08-031-0/+451
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24005 b3059339-0415-0410-9bf9-f77b7e298cf2
* add XVR-100 vo, patch by Balatoni Denes (dbalatoni interware hu)reimar2007-08-032-0/+38
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24004 b3059339-0415-0410-9bf9-f77b7e298cf2
* Don't apply windows-like font scaling if hhea or os2 tables contain invalideugeni2007-08-031-2/+6
| | | | | | | metrics. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24003 b3059339-0415-0410-9bf9-f77b7e298cf2
* Workaround for fonts with zero ascender/descender in horizontal header.eugeni2007-08-031-0/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24002 b3059339-0415-0410-9bf9-f77b7e298cf2
* Factor out common code from ass_font_new and ass_font_reselect.eugeni2007-08-032-58/+47
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24001 b3059339-0415-0410-9bf9-f77b7e298cf2
* More simple and correct font reselection.eugeni2007-08-034-58/+21
| | | | | | | | | Since ass_font_t contains a list of font faces, there is no need to select the face with maximum charset coverage each time. It is enough to select any face with the required glyph. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24000 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added missing newline.cehoyos2007-08-031-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23999 b3059339-0415-0410-9bf9-f77b7e298cf2
* Revert setting audio output channel count for FFmpeguau2007-08-021-2/+0
| | | | | | | | | | | | | | | | | | | | The FFmpeg API needs to be fixed before this can be done sanely. ffdca wants the desired output channel count to be set in avctx->channels. Unfortunately it also completely fails if the requested number of channels is not available rather than returning a different amount (if 6 channels are requested we'd probably rather use stereo than fail completely). ffvorbis ignores caller-set values in avctx->channels. It writes the channel count there once during init. This means the caller can only set the count before init because later there would be no indication whether the channel count in avctx reflects real output. ffwma requires the caller to supply the encoded channel count in avctx->channels during init or it fails. So it is not possible to set a different number of desired output channels there before init either. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23998 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23996: Hint at mf://@... syntaxvoroshil2007-08-021-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23997 b3059339-0415-0410-9bf9-f77b7e298cf2
* Hint at mf://@... syntaxreimar2007-08-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23996 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix B-frame consistency pointed out by diego, add MPEG-1/2 speedupscompn2007-08-021-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23995 b3059339-0415-0410-9bf9-f77b7e298cf2
* Set lavc_context->channels before opening the codec, it is sufficient toreimar2007-08-011-2/+2
| | | | | | | | select the desired number of codecs for ffdca and does not break other codecs like ffvorbis that do not (re)set the channel number during decode. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23994 b3059339-0415-0410-9bf9-f77b7e298cf2
* xan wc4 video decoding, removed bframe warning messagecompn2007-08-011-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23993 b3059339-0415-0410-9bf9-f77b7e298cf2
* Define ENABLE_GRAY for FFmpeguau2007-08-011-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23992 b3059339-0415-0410-9bf9-f77b7e298cf2
* better wording - thanx nico :)ptt2007-08-011-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23991 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23982: i_certify_that_my_video_stream_does_not_use_b_frames is gone.voroshil2007-08-012-13/+20
| | | | | | | | r23983: i_certify_that_my_video_stream_does_not_use_b_frames is gone. r23984: Added FIXME skeletons for missing lavc options. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23990 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l for committing untested changes, a test call was missing.diego2007-08-011-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23989 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23687: Implemented tv://[<channel>][/<input_id>] url syntaxkraymer2007-08-012-18/+94
| | | | | | | | | | | | | | | | | r23748: Leave out (no) prefix from option names for consistency. r23852: af channels example for ffdca to ALSA reordering r23856: small wording improvement r23897: Experimental negative panscan values r23898: Set -vo gl slice-height default to 0 r23917: Document -rawvideo format="format string" r23920 + r23924: Teletext support r23926: update man page with v4l2 a/v outputs r23978: add possibly incorrect subfont entry r23982: i_certify_that_my_video_stream_does_not_use_b_frames is gone. r23984: Added FIXME skeletons for missing lavc options. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23988 b3059339-0415-0410-9bf9-f77b7e298cf2
* (cosmetics) Make TV detection code two spaces indentedvoroshil2007-08-011-48/+48
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23987 b3059339-0415-0410-9bf9-f77b7e298cf2
* Enable teletext for V4Lv1.voroshil2007-08-011-4/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23986 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix detection of xan audio. -noidx or -forceidx still is necessaryreimar2007-08-011-0/+5
| | | | | | | to detect audio at all. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23985 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added FIXME skeletons for missing lavc options.diego2007-08-011-0/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23984 b3059339-0415-0410-9bf9-f77b7e298cf2
* i_certify_that_my_video_stream_does_not_use_b_frames is gone.diego2007-08-011-3/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23983 b3059339-0415-0410-9bf9-f77b7e298cf2
* i_certify_that_my_video_stream_does_not_use_b_frames is gone.diego2007-08-011-8/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23982 b3059339-0415-0410-9bf9-f77b7e298cf2
* Ugly hack to make xanlib.dll work.reimar2007-08-012-1/+10
| | | | | | | See also http://samples.mplayerhq.hu/game-formats/wc4-xan/ git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23981 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23897: Experimental negative panscan valuesvoroshil2007-08-011-4/+65
| | | | | | | | | | | | | | r23898: Set -vo gl slice-height default to 0, the current default of 4 seems r23913: punctuation, new sentences on new lines r23917: Document -rawvideo format="format string" r23924: Teletext support r23926: update man page with v4l2 a/v outputs r23944: h/w -> hardware r23962: added missing ':' for separator r23978: add possibly incorrect subfont entry git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23980 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23891: typo fix: childs --> childrenvoroshil2007-08-011-1/+2
| | | | | | | | r23894: Give message string a more meaningful name. r23920: Teletext support. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23979 b3059339-0415-0410-9bf9-f77b7e298cf2
* add possibly incorrect subfont entrycompn2007-07-311-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23978 b3059339-0415-0410-9bf9-f77b7e298cf2
* allow to specify the audio bitrate in bits (some codecs need that ...)michael2007-07-312-2/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23977 b3059339-0415-0410-9bf9-f77b7e298cf2
* get rid of this idiotic i_certify_that_my_video_stream_does_not_use_b_framesmichael2007-07-311-14/+1
| | | | | | | | | muxer_lavf can now generate correct files with b frames as long as the timestamps provided to it are correct (they should be with lavc encoding, expect trouble with stream copy though) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23976 b3059339-0415-0410-9bf9-f77b7e298cf2
* make muxer store the provided timestampsmichael2007-07-311-4/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23975 b3059339-0415-0410-9bf9-f77b7e298cf2
* make timestamps out of hot airmichael2007-07-311-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23974 b3059339-0415-0410-9bf9-f77b7e298cf2
* make a few more parameters accessable from mplayermichael2007-07-311-1/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23973 b3059339-0415-0410-9bf9-f77b7e298cf2
* mixer.afilter must be set to NULL when filter chain is destroyed on uninit.reimar2007-07-311-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23972 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make the printoption function take the default values from the variableivo2007-07-311-17/+17
| | | | | | | | | names related to the flag name, with the possibility to override it if the variable name is not the same as the flag name. This simplifies printing of the help message and reduces the possibility of future errors. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23971 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics, indentationivo2007-07-311-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23970 b3059339-0415-0410-9bf9-f77b7e298cf2
* Shorten (un)setting of all test flagsivo2007-07-311-29/+7
| | | | | | | | Now that we have a list of all flags, we can set them to yes or no with a for-loop. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23969 b3059339-0415-0410-9bf9-f77b7e298cf2
* Much smaller command line parserivo2007-07-311-90/+21
| | | | | | | | This removes all code duplication for setting and unsetting -(no)flags specified on the command line git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23968 b3059339-0415-0410-9bf9-f77b7e298cf2
* another little correctionsptt2007-07-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23967 b3059339-0415-0410-9bf9-f77b7e298cf2
* added missing ":"'sptt2007-07-311-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23966 b3059339-0415-0410-9bf9-f77b7e298cf2
* better wordingptt2007-07-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23965 b3059339-0415-0410-9bf9-f77b7e298cf2
* sorry, left english phrase in...ptt2007-07-311-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23964 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23962ptt2007-07-311-6/+63
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23963 b3059339-0415-0410-9bf9-f77b7e298cf2
* added missing ':' for separatorptt2007-07-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23962 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced to r23920ptt2007-07-311-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23961 b3059339-0415-0410-9bf9-f77b7e298cf2
* Update copyright info and licenseivo2007-07-311-2/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23960 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics, break overly long linesivo2007-07-311-6/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23959 b3059339-0415-0410-9bf9-f77b7e298cf2
* replace ^I by $TAB now that TAB is globalivo2007-07-311-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23958 b3059339-0415-0410-9bf9-f77b7e298cf2
* only test for stupid code and reserved identifiers if there are any .c or .hivo2007-07-311-4/+2
| | | | | | | files git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23957 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l, forgot to make TAB globalivo2007-07-311-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23956 b3059339-0415-0410-9bf9-f77b7e298cf2
* Test for reserved identifiers.ivo2007-07-311-3/+24
| | | | | | | | Identifiers with two initial underscores or an initial underscore followed by an uppercase letter are reserved globally for use by the compiler. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23955 b3059339-0415-0410-9bf9-f77b7e298cf2
* Identifiers starting with underscores are reserved.diego2007-07-3115-44/+44
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23954 b3059339-0415-0410-9bf9-f77b7e298cf2
* UTF-8 conversiondiego2007-07-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23953 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make teletext depend on freetype. Fixes compilation failer (in sub.c).iive2007-07-301-1/+1
| | | | | | | The new teletext code modifies variables that are available only with freetype font rendering support. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23952 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l, forgot to add -DGL_WIN32 to CFLAGS for Windows OpenGL testreimar2007-07-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23951 b3059339-0415-0410-9bf9-f77b7e298cf2
* Extend OpenGL configure test to also check for glx/wgl and proper linking.reimar2007-07-301-1/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23950 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/23588gpoirier2007-07-301-2/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23949 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove GNUism (case range)ivo2007-07-301-11/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23948 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add test for GNUismsivo2007-07-301-0/+17
| | | | | | | | | It currently tests for case ... ranges only, but other tests (like GNU extensions to libc) can be added later git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23947 b3059339-0415-0410-9bf9-f77b7e298cf2
* Teletext support for V4Lv1voroshil2007-07-301-0/+174
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23946 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l: wrong pointer was initialized (causes crash during startup).voroshil2007-07-302-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23945 b3059339-0415-0410-9bf9-f77b7e298cf2
* h/w -> hardwareben2007-07-301-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23944 b3059339-0415-0410-9bf9-f77b7e298cf2
* Change V4L2 MPEG decoder check so it can actually failreimar2007-07-301-4/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23943 b3059339-0415-0410-9bf9-f77b7e298cf2
* Comment out purely debugging printf that in addition uses __FUNCTION__ whichreimar2007-07-301-1/+1
| | | | | | | is not supported by all compilers. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23942 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix hopefully final 150 sector offset VCD bug. Caused no noticeable problems ↵reimar2007-07-301-1/+2
| | | | | | | | | on Linux because it is the only case where M:S:F is used in the