summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Files should be opened in binary mode on OS/2.diego2009-06-031-3/+3
| | | | | | | patch by KO Myung-Hun, komh chollian net git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29346 b3059339-0415-0410-9bf9-f77b7e298cf2
* CONFIG_LIBNEMESI and CONFIG_LIVE555 are not defined to 0/1 values.diego2009-06-031-2/+2
| | | | | | | | Thus, we cannot check for them in an #if directive, but have to use #if defined() instead. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29345 b3059339-0415-0410-9bf9-f77b7e298cf2
* Configure needs AS to be set for the Makefiles.reimar2009-06-021-0/+1
| | | | | | | | Note that this may not be a pure assembler (i.e. AS=as is wrong), it must be a gcc-compatible assembler with preprocessor (e.g. AS=gcc). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29344 b3059339-0415-0410-9bf9-f77b7e298cf2
* Testing RGB48 variants requires bigger stride in swscale-example.ckostya2009-06-021-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29343 b3059339-0415-0410-9bf9-f77b7e298cf2
* YUV into RGB48 BE/LE conversion supportkostya2009-06-022-0/+57
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29342 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partial (low bits ignored, no direct transcoding into other RGB formats) supportkostya2009-06-023-1/+61
| | | | | | | | for inputting RGB48BE/LE. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29341 b3059339-0415-0410-9bf9-f77b7e298cf2
* Switch to avcodec_decode_video2 to allow a hack that makes PNG decode correctlyreimar2009-06-011-2/+7
| | | | | | | again instead of in CorePNG delta mode. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29340 b3059339-0415-0410-9bf9-f77b7e298cf2
* Initialize local variable, avoids a possible crash due to using anreimar2009-06-011-2/+2
| | | | | | | uninitialized variable as array index for mono files. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29339 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add const where appropriate, also gets rid of a compiler warning.reimar2009-06-011-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29338 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l, do not read probe buffer if it will not be used because a format was ↵reimar2009-06-011-6/+7
| | | | | | forced. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29337 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add actually working support for PPC64reimar2009-06-011-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29336 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use target_arch and target_subarch which is more similar to what FFmpeg usesreimar2009-06-011-5/+5
| | | | | | | and makes more sense when adding proper PPC64 or MIPS64 support. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29335 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add some missing FFmpeg archsreimar2009-06-011-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29334 b3059339-0415-0410-9bf9-f77b7e298cf2
* Using nl_langinfo in the asf mmst implementation makes no sense sincereimar2009-05-311-8/+1
| | | | | | | | MPlayer does not use setlocale. Just default to UTF-8 as input charset until there is a better solution. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29333 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use a malloced string for the get_term_charset return value.reimar2009-05-314-5/+14
| | | | | | | | This is necessary at least on POSIX systems since the buffer returned by nl_langinfo may change its contents with e.g. each setlocale call. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29332 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make ID_SEEKABLE depend on both the stream and the demuxer being seekable,reimar2009-05-311-1/+2
| | | | | | | | | instead of only depending on the stream. This makes the value correctly 0 e.g. for AVI files without index. Patch by Jason Tackaberry [tack urandom ca] git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29331 b3059339-0415-0410-9bf9-f77b7e298cf2
* In all demux_info_add calls change "name" to "title".reimar2009-05-307-7/+7
| | | | | | | | | Currently "name" and "title" are both used at random, this makes it consistent. "title" was chosen because it is less ambiguous and also the get_meta_title slave mode command uses that (there is no get_meta_name command). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29330 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l, demuxer info tags are _not_ case sensitive, so use strcasecmp.reimar2009-05-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29329 b3059339-0415-0410-9bf9-f77b7e298cf2
* forgot a line :(; addedptt2009-05-281-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29328 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r2769ptt2009-05-281-18/+78
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29327 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync'ed to r29209ptt2009-05-281-655/+656
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29326 b3059339-0415-0410-9bf9-f77b7e298cf2
* refine previous translationjrash2009-05-281-107/+105
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29325 b3059339-0415-0410-9bf9-f77b7e298cf2
* add dvh1 fourcc to ffdv codec, fixes dvh1_sample_truncated.avicompn2009-05-261-2/+2
| | | | | | | and Mp42 fourcc to ffmp42 codec, fixes unknown_audio_codec.avi git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29324 b3059339-0415-0410-9bf9-f77b7e298cf2
* add binary decoder for YLC0compn2009-05-261-0/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29323 b3059339-0415-0410-9bf9-f77b7e298cf2
* Unify over rtsp_transport_tcp as var to hold the -rtsp-stream-over-tcp flag ↵lu_zero2009-05-252-4/+9
| | | | | | and make sure libnemesi only builds are fine git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29322 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make sure -rtsp-stream-with-sctp is supported while building with libnemesilu_zero2009-05-251-4/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29321 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move colorspace conversion functions implemented in pure C from templatekostya2009-05-252-137/+138
| | | | | | | | into swscale.c git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29320 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r29305Gabrov2009-05-249-70/+43
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29319 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: alphabetically sort SRCS_MPLAYERdiego2009-05-211-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29318 b3059339-0415-0410-9bf9-f77b7e298cf2
* Let SwScaler know that RGB48 BE/LE is 16-bits per component format.kostya2009-05-191-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29317 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make SwScaler recognize RGB48 BE/LE colourspaces (not support though).kostya2009-05-192-0/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29316 b3059339-0415-0410-9bf9-f77b7e298cf2
* Set XVR100 make variable. Fixes compilation when support for xvr100 was ↵reimar2009-05-191-0/+1
| | | | | | detected. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29315 b3059339-0415-0410-9bf9-f77b7e298cf2
* When used with shared_buffer, there's no need for a NSApp object, which ↵adrian2009-05-181-4/+6
| | | | | | causes MPlayer to be marked as unresponsive. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29314 b3059339-0415-0410-9bf9-f77b7e298cf2
* When used with shared_buffer, autorelease in each flip_page so objects don't ↵adrian2009-05-181-2/+4
| | | | | | accumulate until exit. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29313 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/r29244gpoirier2009-05-171-7/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29312 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a hack to detect when we are writing into a Windows pipe since the fseekreimar2009-05-161-1/+11
| | | | | | | | | incorrectly does not fail like it should. This ensures we will not incorrectly append the file header at the end. Based on patch by Zhou Zongyi [zhouzongyi at pset.suntec.net] git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29311 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing path to find invocation for tags/TAGS creation.diego2009-05-151-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29310 b3059339-0415-0410-9bf9-f77b7e298cf2
* Simplify find invocation in tags/TAGS generation command:diego2009-05-151-2/+2
| | | | | | | | - Drop '-print', which is the default for find. - Drop unnecessary invocation of find in a subshell. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29309 b3059339-0415-0410-9bf9-f77b7e298cf2
* Revert whitespace removal for win-related code, because lack of ^M atbircoph2009-05-133-380/+380
| | | | | | | linebreaks may cause problems in win. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29308 b3059339-0415-0410-9bf9-f77b7e298cf2
* Restore old license file after whitspace removal in previous commit.bircoph2009-05-131-5/+5
| | | | | | | | Legal stuff is very fragile and shouldn't be changed, even for whitespace cosmetics. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29307 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove all kind of trailing whitespaces from all MPlayer's files.bircoph2009-05-13132-1859/+1859
| | | | | | | | This affects all kind of spaces (' ',^I,^M,^L,...): actually [:space:] regex character set. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29306 b3059339-0415-0410-9bf9-f77b7e298cf2
* whitespace cosmetics: Remove all trailing whitespace.diego2009-05-13726-23216/+23216
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29305 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make sure that -Ilibdvdread4 appears in CFLAGS before any system directoriesdiego2009-05-121-1/+1
| | | | | | | | so that internal dvdread headers do not conflict with system headers. Fixes Bugzilla #1465. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29304 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make sure that -I flags for internal library copies come before other CFLAGSdiego2009-05-121-5/+6
| | | | | | | so that header files do not conflict with system-installed versions. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29303 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix IPv4 vs. IPv6 typo, closes Bugzilla #1439.diego2009-05-121-1/+1
| | | | | | | noticed by Loic Pefferkorn, loic-mplayer loicp eu git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29302 b3059339-0415-0410-9bf9-f77b7e298cf2
* libdvdread4 does not use HAVE_CONFIG_H, so drop the -D flag for libdvdread4.diego2009-05-121-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29301 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add HAVE_PPC64 definition for FFmpeg.diego2009-05-121-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29300 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make sure CONFIG_MUXERS is always set.diego2009-05-121-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29299 b3059339-0415-0410-9bf9-f77b7e298cf2
* Get rid of some more trailing whitespacereynaldo2009-05-121-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29298 b3059339-0415-0410-9bf9-f77b7e298cf2
* Get rid of some more trailing whitespacereynaldo2009-05-121-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29297 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some reformating to avoid two too long linesreynaldo2009-05-121-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29296 b3059339-0415-0410-9bf9-f77b7e298cf2
* Get rid of some more trailing whitespacereynaldo2009-05-121-21/+21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29295 b3059339-0415-0410-9bf9-f77b7e298cf2
* Get rid of some more trailing whitespacereynaldo2009-05-121-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29294 b3059339-0415-0410-9bf9-f77b7e298cf2
* Get rid of some more trailing whitespacereynaldo2009-05-121-76/+76
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29293 b3059339-0415-0410-9bf9-f77b7e298cf2
* Get rid of some more trailing whitespacereynaldo2009-05-121-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29292 b3059339-0415-0410-9bf9-f77b7e298cf2
* Get rid of some more trailing whitespacereynaldo2009-05-121-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29291 b3059339-0415-0410-9bf9-f77b7e298cf2
* Get rid of some more trailing whitespacereynaldo2009-05-121-14/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29290 b3059339-0415-0410-9bf9-f77b7e298cf2
* chunk size = 0 is valid for DATA chunks (used in live streams), don't rtogni2009-05-101-1/+1
| | | | | | | | print warning message git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29289 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add const qualifier to param argument of sws_getContext() anddiego2009-05-102-4/+5
| | | | | | | | sws_getCachedContext(). Fixes the warning: swscale.c:3408: warning: assignment discards qualifiers from pointer target type git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29288 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move preprocessor condition before variable declaration, fixes the warning:diego2009-05-101-1/+1
| | | | | | | libswscale/swscale.c:1795: warning: unused variable 'flags' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29287 b3059339-0415-0410-9bf9-f77b7e298cf2
* MPV_common_init balks if s->avctx->pix_fmt == PIX_FMT_NONE, so we set it ↵rik2009-05-091-0/+2
| | | | | | correctly git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29286 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove redundant information about configuring MPlayer for GUI support.diego2009-05-091-42/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29285 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move image formats section to a more appropriate place.diego2009-05-091-12/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29284 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: indentation fixes for the dvdread checkdiego2009-05-091-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29283 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix misplaced 'fi' in external dvdread test.diego2009-05-091-1/+1
| | | | | | | patch by Diogo Franco, diogomfranco gmail com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29282 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing const qualifiers to AltiVec function parameters where appropriate.diego2009-05-093-7/+11
| | | | | | | Fixes a couple of 'discards qualifiers from pointer target type' warnings. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29281 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add standard license header to all files in libmpdemux.diego2009-05-0861-119/+1168
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29280 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace informal GPL license header by standard GPL header.diego2009-05-081-11/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29279 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace informal LGPL header by standard LGPL license header.diego2009-05-081-6/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29278 b3059339-0415-0410-9bf9-f77b7e298cf2
* lirc anc lircc are MPlayer-only, so add LDFLAGS for MPlayer link only.diego2009-05-081-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29277 b3059339-0415-0410-9bf9-f77b7e298cf2
* Do not use flag CWBackPixel when calling vo_x11_create_vo_window():cehoyos2009-05-081-1/+3
| | | | | | | | | It leads to VDPAU errors after video aspect ratio changes. Patch by Stephen Warren. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29276 b3059339-0415-0410-9bf9-f77b7e298cf2
* The Apple remote code needs the Cocoa framework to link.diego2009-05-081-1/+1
| | | | | | | Apple remote LDFLAGS are only necessary for linking MPlayer. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29275 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add -framework Carbon to LDFLAGS when Mac OS X finder or bundle is enabled.diego2009-05-071-2/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29274 b3059339-0415-0410-9bf9-f77b7e298cf2
* Adrian is maintaining vo_corevideo and merging the OSX Extended GUI branch.adrian2009-05-071-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29273 b3059339-0415-0410-9bf9-f77b7e298cf2
*