summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Increase slave mode buffer so that one can load files with a deeperben2009-06-261-1/+1
* Use memcpy_pic2 instead of reimplementing it.reimar2009-06-261-8/+2
* Close /dev/tty again on uninit.reimar2009-06-261-0/+2
* Fix indentation broken in last patchreimar2009-06-261-2/+2
* Get rid of completely pointless vt_doit variablereimar2009-06-261-5/+1
* 10l, use fopen directly instead of open + fdopenreimar2009-06-261-7/+2
* Use a single err_out in fb_preinit, also fixes a leak when vo_dbpp has anreimar2009-06-261-6/+8
* Use FFALIGN and FFMAX3reimar2009-06-261-3/+3
* Remove useless castsreimar2009-06-261-4/+4
* fbdev: remove pointless ()reimar2009-06-261-9/+9
* Replace incorrect use of strncpy by av_strlcpy.reimar2009-06-261-1/+2
* Use the RESET_GEOMETRY macro in one more place instead of duplicating its code.reimar2009-06-261-1/+1
* 100l, RESET_GEOMETRY must reset values to INT_MIN, not -1, -1 is areimar2009-06-261-1/+1
* AltiVec code and runtime cpudetect do not require CONFIG_GPL.diego2009-06-251-5/+5
* The AltiVec optimizations of libswscale are no longer under GPL.diego2009-06-251-1/+1
* PPC: Make sure that COMPILE_C is not deactivated if RUNTIME_CPUDETECT is set.diego2009-06-251-2/+1
* Modern Solaris versions have different default CD-ROM devices.diego2009-06-241-0/+3
* AVStream.language is deprecated, switch to av_get_metadata instead.reimar2009-06-241-4/+5
* Move allocation to avoid a possible memleak if new_sh_audio fails.reimar2009-06-241-1/+2
* Remove pointless stream count checks, new_sh_* already checks for that.reimar2009-06-241-6/+0
* Print ID_AID_???_LANG and ID_SID_???_LANG in lavf demuxer so that frontendsreimar2009-06-241-2/+6
* Fix compilation: codec_wav_tags/codec_bmp_tags were renamed toreimar2009-06-231-2/+2
* Move printing of ID_AID_???_LANG to ts_add_stream instead of ts_detect_streams.reimar2009-06-231-2/+4
* Initialize es->lang to ensure a previous value does not get misattributedreimar2009-06-231-0/+1
* Do not use -rdynamic on Solaris, where the flag is unsupported.diego2009-06-221-1/+1
* Remove duplicate printing of ID_AUDIO_ID/ID_VIDEO_ID, those are alreadyreimar2009-06-211-2/+0
* TS demuxer: make the IDs used by DEMUXER_CTRL_SWITCH_* and DEMUXER_CTRL_IDENT...reimar2009-06-211-9/+4
* 1l to Reimar for not updating lavc TM2 decoder output format in codecs.confkostya2009-06-201-1/+1
* Do not use MAX_A/V_STREAMS as upper limit for switch_audio/switch_videoreimar2009-06-201-2/+2
* fix missing event on move that breaks xmga window movementattila2009-06-191-1/+2
* Ignore XML files for which no translations exist yet.diego2009-06-190-0/+0
* Fix setting of DOC_LANGS and MAN_LANGS, the wrong variables were being used.diego2009-06-191-2/+2
* Do not call rgb2rgbWrapper() for rgb48*, there is no special converter vitor2009-06-171-0/+2
* enable fontconfig support by default. This change takes only in effect,siretart2009-06-171-1/+1
* Conform to the updated Desktop File Specification. Also improve thesiretart2009-06-171-5/+6
* add .mp1/.mp2 mov audio fourcc to ffmp2 codeccompn2009-06-171-0/+2
* Add a missing check for a NULL return value.eugeni2009-06-161-0/+2
* Do not auto-detect old libnut installations.cehoyos2009-06-161-0/+1
* Rename LIBVORBIS Makefile variable to VORBIS.diego2009-06-142-3/+3
* 100l: Add missing $s to default language variable checks, which preventeddiego2009-06-141-3/+3
* Overhaul translation handling completely and add options to install specificdiego2009-06-141-43/+55
* cosmetics: Drop leading underscore from _language* variables.diego2009-06-141-11/+11
* Allow setting message language separately from documentation language.diego2009-06-141-4/+9
* Drop redundant setting of message language to English when all languagesdiego2009-06-141-1/+0
* sync with ffmpegcompn2009-06-131-5/+7
* refine previous translationjrash2009-06-121-31/+31
* sync with ffmpegcompn2009-06-121-0/+2
* sync with ffmpegcompn2009-06-121-0/+10
* Kill warnings of possibly unused variables by using av_unused.ramiro2009-06-111-8/+8
* Fix compilation: #undef standard library functions that arediego2009-06-111-0/+6
* Add libavutil/internal.h #include, required for the DECLARE_ALIGNED macro.diego2009-06-111-0/+1
* replace "g" asm constraint by "erm" since "g" allows 64bit immediates whilegpoirier2009-06-071-2/+2
* Remove '\p' doxygen markup, as it should improve plain text doxystefano2009-06-061-16/+15
* Use DECLARE_ALIGNED macro instead of __attribute__((aligned)) for ppc code.ramiro2009-06-042-6/+6
* Replace more uses of __attribute__((aligned)) by DECLARE_ALIGNED.ramiro2009-06-041-2/+2
* Use DECLARE_ALIGNED macro instead of gcc __attribute__.ramiro2009-06-042-39/+39
* cosmetics: replace dead urlcompn2009-06-031-1/+1
* Files should be opened in binary mode on OS/2.diego2009-06-031-3/+3
* CONFIG_LIBNEMESI and CONFIG_LIVE555 are not defined to 0/1 values.diego2009-06-031-2/+2
* Configure needs AS to be set for the Makefiles.reimar2009-06-021-0/+1
* Testing RGB48 variants requires bigger stride in swscale-example.ckostya2009-06-021-0/+4
* YUV into RGB48 BE/LE conversion supportkostya2009-06-022-0/+57
* Partial (low bits ignored, no direct transcoding into other RGB formats) supportkostya2009-06-023-1/+61
* Switch to avcodec_decode_video2 to allow a hack that makes PNG decode correctlyreimar2009-06-011-2/+7
* Initialize local variable, avoids a possible crash due to using anreimar2009-06-011-2/+2
* Add const where appropriate, also gets rid of a compiler warning.reimar2009-06-011-2/+2
* 100l, do not read probe buffer if it will not be used because a format was fo...reimar2009-06-011-6/+7
* Add actually working support for PPC64reimar2009-06-011-4/+4
* Use target_arch and target_subarch which is more similar to what FFmpeg usesreimar2009-06-011-5/+5
* Add some missing FFmpeg archsreimar2009-06-011-1/+1
* Using nl_langinfo in the asf mmst implementation makes no sense sincereimar2009-05-311-8/+1
* Use a malloced string for the get_term_charset return value.reimar2009-05-314-5/+14
* Make ID_SEEKABLE depend on both the stream and the demuxer being seekable,reimar2009-05-311-1/+2
* In all demux_info_add calls change "name" to "title".reimar2009-05-307-7/+7
* 100l, demuxer info tags are _not_ case sensitive, so use strcasecmp.reimar2009-05-301-1/+1
* forgot a line :(; addedptt2009-05-281-0/+2
* synced with r2769ptt2009-05-281-18/+78
* sync'ed to r29209ptt2009-05-281-655/+656
* refine previous translationjrash2009-05-281-107/+105
* add dvh1 fourcc to ffdv codec, fixes dvh1_sample_truncated.avicompn2009-05-261-2/+2
* add binary decoder for YLC0compn2009-05-261-0/+8
* Unify over rtsp_transport_tcp as var to hold the -rtsp-stream-over-tcp flag a...lu_zero2009-05-252-4/+9
* Make sure -rtsp-stream-with-sctp is supported while building with libnemesilu_zero2009-05-251-4/+8
* Move colorspace conversion functions implemented in pure C from templatekostya2009-05-252-137/+138
* synced with r29305Gabrov2009-05-249-70/+43
* cosmetics: alphabetically sort SRCS_MPLAYERdiego2009-05-211-4/+4
* Let SwScaler know that RGB48 BE/LE is 16-bits per component format.kostya2009-05-191-0/+2
* Make SwScaler recognize RGB48 BE/LE colourspaces (not support though).kostya2009-05-192-0/+7
* Set XVR100 make variable. Fixes compilation when support for xvr100 was detec...reimar2009-05-191-0/+1
* When used with shared_buffer, there's no need for a NSApp object, which cause...adrian2009-05-181-4/+6
* When used with shared_buffer, autorelease in each flip_page so objects don't ...adrian2009-05-181-2/+4
* sync w/r29244gpoirier2009-05-171-7/+20
* Add a hack to detect when we are writing into a Windows pipe since the fseekreimar2009-05-161-1/+11
* Add missing path to find invocation for tags/TAGS creation.diego2009-05-151-2/+2
* Simplify find invocation in tags/TAGS generation command:diego2009-05-151-2/+2
* Revert whitespace removal for win-related code, because lack of ^M atbircoph2009-05-133-380/+380
* Restore old license file after whitspace removal in previous commit.bircoph2009-05-131-5/+5
* Remove all kind of trailing whitespaces from all MPlayer's files.bircoph2009-05-13132-1859/+1859
* whitespace cosmetics: Remove all trailing whitespace.diego2009-05-13726-23216/+23216
* Make sure that -Ilibdvdread4 appears in CFLAGS before any system directoriesdiego2009-05-121-1/+1
* Make sure that -I flags for internal library copies come before other CFLAGSdiego2009-05-121-5/+6
* Fix IPv4 vs. IPv6 typo, closes Bugzilla #1439.diego2009-05-121-1/+1
* libdvdread4 does not use HAVE_CONFIG_H, so drop the -D flag for libdvdread4.diego2009-05-121-1/+1
* Add HAVE_PPC64 definition for FFmpeg.diego2009-05-121-0/+3
* Make sure CONFIG_MUXERS is always set.diego2009-05-121-0/+1
* Get rid of some more trailing whitespacereynaldo2009-05-121-9/+9
* Get rid of some more trailing whitespacereynaldo2009-05-121-2/+2
* Some reformating to avoid two too long linesreynaldo2009-05-121-3/+3
* Get rid of some more trailing whitespacereynaldo2009-05-121-21/+21
* Get rid of some more trailing whitespacereynaldo2009-05-121-4/+4
* Get rid of some more trailing whitespacereynaldo2009-05-121-76/+76
* Get rid of some more trailing whitespacereynaldo2009-05-121-2/+2
* Get rid of some more trailing whitespacereynaldo2009-05-121-1/+1
* Get rid of some more trailing whitespacereynaldo2009-05-121-14/+14
* chunk size = 0 is valid for DATA chunks (used in live streams), don't rtogni2009-05-101-1/+1
* Add const qualifier to param argument of sws_getContext() anddiego2009-05-102-4/+5
* Move preprocessor condition before variable declaration, fixes the warning:diego2009-05-101-1/+1
* MPV_common_init balks if s->avctx->pix_fmt == PIX_FMT_NONE, so we set it corr...rik2009-05-091-0/+2
* Remove redundant information about configuring MPlayer for GUI support.diego2009-05-091-42/+0
* Move image formats section to a more appropriate place.diego2009-05-091-12/+12
* cosmetics: indentation fixes for the dvdread checkdiego2009-05-091-9/+9
* Fix misplaced 'fi' in external dvdread test.diego2009-05-091-1/+1
* Add missing const qualifiers to AltiVec function parameters where appropriate.diego2009-05-093-7/+11
* Add standard license header to all files in libmpdemux.diego2009-05-0861-119/+1168
* Replace informal GPL license header by standard GPL header.diego2009-05-081-11/+12
* Replace informal LGPL header by standard LGPL license header.diego2009-05-081-6/+20
* lirc anc lircc are MPlayer-only, so add LDFLAGS for MPlayer link only.diego2009-05-081-2/+2
* Do not use flag CWBackPixel when calling vo_x11_create_vo_window():cehoyos2009-05-081-1/+3
* The Apple remote code needs the Cocoa framework to link.diego2009-05-081-1/+1
* Add -framework Carbon to LDFLAGS when Mac OS X finder or bundle is enabled.diego2009-05-071-2/+8
* Adrian is maintaining vo_corevideo and merging the OSX Extended GUI branch.adrian2009-05-071-2/+2
* Fix sliced yuv410 -> yuv420 conversionvitor2009-05-071-4/+8
* revise previous translationjrash2009-05-071-63/+63
* sync with en/mplayer.1 r29252jrash2009-05-071-8/+23
* cosmetics: Move Quartz and CoreVideo checks into the vo driver section.diego2009-05-051-47/+50
* LDFLAGS for CoreVideo and Quartz should be MPlayer-only.diego2009-05-051-2/+2
* libdvdcss requires the Carbon framework to link on Mac OS X.diego2009-05-051-1/+1
* cosmetics: Move $def_dvdcss to a more sensible place in config.h.diego2009-05-051-1/+1
* cosmetics: Move CoreAudio check to audio output section.diego2009-05-051-22/+24
* Add prototype for mp_a52_framesize().diego2009-05-051-0/+2
* Add #define for HAVE_DVDCSS_DVDCSS_H (needed by internal libdvdread) to config.hdiego2009-05-051-1/+3
* Remove pointless #ifdef around spudec.h #include.diego2009-05-051-2/+0
* cosmetics: indentationdiego2009-05-051-6/+6
* Allow disabling and enabling VCD support through command line parameters.diego2009-05-051-0/+6
* CoreAudio LDFLAGS should be MPlayer-only.diego2009-05-051-1/+1
* Improve CoreAudio check: Use all required headers and frameworks.diego2009-05-051-1/+3
* Simplify Mac OS X Finder and Mac OS X Bundle file locations checks.diego2009-05-051-14/+5
* Change VOFW for x86 to 5120, it allows larger images to be scaled and wasmichael2009-05-051-1/+6
* CONFIG_QUICKTIME should be set depending on the state of QTX support.diego2009-05-041-3/+2
* Add missing 'void' to parameterless function declarations.diego2009-05-0424-72/+70
* ao_macosx was renamed to ao_coreaudio.diego2009-05-049-9/+9
* Rename macosx video output driver to corevideo.diego2009-05-0424-88/+88
* Rename macosx audio output driver to coreaudio.diego2009-05-047-16/+16
* QuickTime codecs support requires -framework QuickTime to link on Mac OS X.diego2009-05-041-0/+1
* Replace QuickTime.h #include with Carbon.h, which is really needed.diego2009-05-042-2/+1
* Ulion no longer has time to be maintainer.diego2009-05-041-3/+3
* Improve CoreVideo check: Test more #includes, add -framework Carbon to LDFLAGS.diego2009-05-041-2/+5
* Add information about configure options to config.mak.diego2009-05-041-0/+2
* Cosmetics for r29244 to follow K&R style closely.bircoph2009-05-031-17/+17
* Support for libbs2b ver. 3.0.0 API.bircoph2009-05-032-24/+102
* Use libavutil/fifo.h for macosx ao instead of its own FIFO implementation.reimar2009-05-031-77/+21
* Fix chroma shift when scaling from ARGB on LE and BGRA on BEsdrik2009-05-021-1/+1
* Fix polish spelling. Noticed in Gentoo ebuild long time ago.bircoph2009-04-271-2/+2
* Remove useless duplicated code in yuv2rgb_c_32, yuva2rgba_c and yuva2argb_csdrik2009-04-271-9/+0
* sync w/r29147gpoirier2009-04-271-11/+40
* Revert previous two commits, the CoreVideo vo needs both OpenGL and Cocoa.diego2009-04-261-2/+2
* Replace glibc-specific __WORDSIZE preprocessor check with HAVE_FAST_64BIT.diego2009-04-251-2/+2
* Fix typo in CoreVideo linker flags: the Carbon, not Cocoa framework is needed.diego2009-04-251-1/+1
* Remove unnecessary -framework OpenGL from CoreVideo linker flags.diego2009-04-251-2/+2
* whitespace cosmetics: reindent Mac OS X checks, remove trailing whitespacediego2009-04-251-27/+27
* Split generic OS X API check into separate CoreAudio, CoreVideo, Quartz checks.diego2009-04-251-33/+36
* typo in XFORM asm check, noticed by Emanuele Giaquintadiego2009-04-251-1/+1
* sane verbosity levels for menu initializationdiego2009-04-251-4/+4
* Make reset_ptr() void.cehoyos2009-04-231-1/+1
* commit remaining binary_codecs.sh changes from debian.siretart2009-04-231-7/+30
* check for missing libstdc++siretart2009-04-231-0/+13