aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
Commit message (Collapse)AuthorAge
...
| | * remove vf_yuy2, functionality is replaced by -vf format=yuv2Gravatar siretart2010-05-14
| |/ | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31173 b3059339-0415-0410-9bf9-f77b7e298cf2
* | af_lavcac3enc: make the filter work without FFmpeg internalsGravatar Uoti Urpala2010-05-14
| | | | | | | | | | | | | | The only FFmpeg internal symbols required were some constants. Define them in the file itself instead. Also add some checks and fixes to make the code more robust and fix a potential memory corruption problem.
| * Remove internal liba52 copy.Gravatar diego2010-05-09
| | | | | | | | | | | | | | Nowadays FFmpeg is faster than liba52 and external liba52 is well supported. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31147 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r31097Gravatar Uoti Urpala2010-04-26
|\|
* | Merge svn changes up to r31033Gravatar Uoti Urpala2010-04-26
|\ \
* \ \ Merge svn changes up to r30967Gravatar Uoti Urpala2010-04-26
|\ \ \
| | | * Add sdl_common file and use it to share the input handling between -vo glGravatar reimar2010-04-25
| | |/ | | | | | | | | | | | | | | | | | | with SDL backend and -vo sdl. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31074 b3059339-0415-0410-9bf9-f77b7e298cf2
| | * Generate dependency information as a sideeffect of compilation.Gravatar diego2010-04-06
| |/ | | | | | | | | | | | | | | This speeds up compilation times, simplifies the code and fixes dependency file generation in libav*. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31026 b3059339-0415-0410-9bf9-f77b7e298cf2
* | build: create and install .mo translation filesGravatar Uoti Urpala2010-04-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If --enable-translation was specified to configure, build and install .mo files for the selected message language(s). The languages enabled can be chosen with the --language-msg option; by default all available ones will be installed. The .po source files for available languages are seached under the po/ subdirectory; at the moment that subdirectory is not included in the sources so no languages will be enabled unless you add the actual translations before running configure. The .mo files are created in the locale/ subdirectory when compiling. By default MPlayer will only look for them in the installed location, so the newly compiled .mo files will not be found if you run MPlayer without installing. You can set the MPLAYER_LOCALEDIR environment variable to point to the locale/ directory to test the translations without installing.
| * cosmetics: Break some overly long lines.Gravatar diego2010-03-26
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30963 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Rename get_path.[ch] --> path.[ch].Gravatar diego2010-03-20
| | | | | | | | | | | | | | These files now contain different functions related to path handling. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30943 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Move SetCodecPath() from loader to get_path.c and make it unconditional.Gravatar diego2010-03-20
| | | | | | | | | | | | | | | | This fixes compilation with the Win32 loader disabled but other binary codec loaders enabled. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30942 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Split codec path related code into a separate file to fix Windows build.Gravatar reimar2010-03-18
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30930 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Makefile: fix %.S rule (broke loader build on x86)Gravatar Uoti Urpala2010-03-10
| | | | | | | | | | The rule merged from svn used "ASFLAGS" which was set for FFmpeg only. Change it to use CFLAGS instead (ASFLAGS is the same in svn).
* | Delete things related to old translation systemGravatar Uoti Urpala2010-03-10
| | | | | | | | | | Remove the help/ subdirectory, configure code to create toplevel help_mp.h, and all the '#include "help_mp.h"' lines from .c files.
* | Merge svn changes up to r30876Gravatar Uoti Urpala2010-03-10
|\|
* | Merge svn changes up to r30732Gravatar Uoti Urpala2010-03-10
|\ \
* | | Makefile: remove outdated vf_halfpack entryGravatar Uoti Urpala2010-03-09
| | | | | | | | | | | | | | | Remove an outdated entry left over from when vf_halfpack depended on libswscale internals.
* | | Merge svn changes up to r30550Gravatar Uoti Urpala2010-03-09
|\ \ \
* \ \ \ Merge svn changes up to r30529Gravatar Uoti Urpala2010-03-09
|\ \ \ \
* \ \ \ \ Merge svn changes up to r30484Gravatar Uoti Urpala2010-03-09
|\ \ \ \ \
* | | | | | build: remove separate mp_msg-mencoder.cGravatar Uoti Urpala2010-03-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mp_msg-mencoder.c was separate from mp_msg.c only to compile a version without a GUI dependency when the internal GUI was enabled. Since the GUI has been removed the same mp_msg.o can be linked in all binaries.
| | | | | * Implement DirectShow filter graph.Gravatar sesse2010-03-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DirectShow specifies that a filter (codec) can expect JoinFilterGraph to be called, and store a reference to the graph manager. Implement a very bare-bones graph manager (all functions are stubs, and no extra interfaces are implemented) and give it to the codec on init. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30866 b3059339-0415-0410-9bf9-f77b7e298cf2
| | | | | * Enable ASS/SSA subtitle support in mencoderGravatar greg2010-03-05
| | | | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enable ASS/SSA rendering through libass in mencoder. This duplicates a bit of code (to parse font attachments, for example). Additionally, add a filter "fixpts" that generates PTS, simulating fixed fps. PTS generated by this filter are then used for subtitle timing. Original patch by Nicolas George. (nicolas.george normalesup.org) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30849 b3059339-0415-0410-9bf9-f77b7e298cf2
* | | | | Makefile: vf_halfpack no longer needs libswscale internalsGravatar Uoti Urpala2010-02-26
| | | | | | | | | | | | | | | | | | | | | | | | | vf_halfpack now uses only the public libswscale API, so compile it unconditionally.
| | | | * Disable old-style implicit rules to fix MinGW/Cygwin compilationGravatar reimar2010-02-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (mplayer-rc.o can not be generated). TO be improved or removed if/when someone figures out the issue. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30725 b3059339-0415-0410-9bf9-f77b7e298cf2
| | | | * FFmpeg: Add tomi to architecture list.Gravatar diego2010-02-20
| | | | | | | | | | | | | | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30664 b3059339-0415-0410-9bf9-f77b7e298cf2
| | | | * Rename gui/mplayer/gtk/menu.[ch] --> gui/mplayer/gtk/gtkmenu.[ch].Gravatar diego2010-02-14
| | | |/ | | | | | | | | | | | | | | | | | | | | | | | | This avoids confusion with headers of the same name in other places. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30573 b3059339-0415-0410-9bf9-f77b7e298cf2
| | | * osdep/mplayer.rc.o depends on version.h.Gravatar diego2010-02-13
| | | | | | | | | | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30549 b3059339-0415-0410-9bf9-f77b7e298cf2
| | | * Fix linking of loader test programs when loader is disabled.Gravatar diego2010-02-12
| | |/ | | | | | | | | | | | | | | | | | | Dependencies were only set correctly if the loader code was enabled. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30542 b3059339-0415-0410-9bf9-f77b7e298cf2
| | * Fix linking of mp3lib test programs when internal mp3lib is disabled.Gravatar diego2010-02-08
| | | | | | | | | | | | | | | | | | | | | Dependencies were only set correctly if internal mp3lib was enabled. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30528 b3059339-0415-0410-9bf9-f77b7e298cf2
| | * Fix linking of liba52 test program when internal liba52 is disabled.Gravatar diego2010-02-08
| |/ | | | | | | | | | | | | Dependencies were only set correctly if internal liba52 was enabled. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30527 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add OS/2 KAI audio driver supportGravatar komh2010-02-01
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30481 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge branch 'matroska'Gravatar Uoti Urpala2010-01-28
|\ \
| * | matroska: add new parsing codeGravatar Uoti Urpala2010-01-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a new EBML parser implementation that should allow significant improvements to the Matroska demuxer. The new parsing code is not actually used yet by the demuxer. The only changes to existing code in this commit are to generate the MATROSKA_ID_* / EBML_ID_* macro definitions from the new implementation and to rename some of them (the new implementation uses names matching the official Matroska spec). The main parser implementation is added in ebml.c. There are two new generated files, ebml_defs.c and ebml_types.h, that contain definitions of EBML elements. Those are generated by the new script TOOLS/matroska.py. There's a new Makefile target "generated_ebml" that run the script to refresh the content of the generated files.
* | | Merge svn changes up to r30301Gravatar Uoti Urpala2010-01-25
|\ \ \ | |/ / |/| / | |/
| * Make ad_hwac3 independent of liba52. Needs a minor amount of code duplication,Gravatar reimar2010-01-11
| | | | | | | | | | | | | | though that is already done that way for dts support in hwac3. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30280 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Update internal libass copy to commit 8db4a5Gravatar greg2010-01-08
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30242 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30216Gravatar Uoti Urpala2010-01-08
|\|
* | Merge svn changes up to r30187Gravatar Uoti Urpala2010-01-08
|\ \
* \ \ Merge svn changes up to r30185Gravatar Uoti Urpala2010-01-08
|\ \ \
* \ \ \ Merge svn changes up to r30165Gravatar Uoti Urpala2010-01-08
|\ \ \ \
| | | | * Invoke pci_db2c.awk as an argument to awk instead of letting the shell run it.Gravatar diego2010-01-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The shell looks for awk in /usr/bin, the path from the shebang line. However, there exist systems with awk in /bin, namely archlinux. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30216 b3059339-0415-0410-9bf9-f77b7e298cf2
| | | | * Remove previous failed attempt at disabling that auto-generation of some C code.Gravatar diego2010-01-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts the previous buggy commit, r30094. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30214 b3059339-0415-0410-9bf9-f77b7e298cf2
| | | | * Drop -Iloader from CPPFLAGS for the loader subdirectory.Gravatar diego2010-01-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead use full relative paths in #includes. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30212 b3059339-0415-0410-9bf9-f77b7e298cf2
| | | | * Add loader/wine/ to DIRS; its headers should be part of checkheaders.Gravatar diego2010-01-04
| | | |/ | | | | | | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30211 b3059339-0415-0410-9bf9-f77b7e298cf2
| | | * 100l, vo_png must go in SRCS_MPLAYER, not SRCS_COMMON.Gravatar reimar2010-01-03
| | | | | | | | | | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30187 b3059339-0415-0410-9bf9-f77b7e298cf2
| | | * Change vo_png to use FFmpeg's png encoder instead of libpng.Gravatar reimar2010-01-03
| | |/ | | | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30186 b3059339-0415-0410-9bf9-f77b7e298cf2
| | * Finally add matrixview vo.Gravatar reimar2010-01-03
| |/ | | | | | | | | | | | | | | Heavily cleaned up/fixed etc. by me, improvements are still possible though. Patch originally by Pigeon <pigeon at pigeond.net> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30182 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Extract functions to generate yuv->rgb matrices and lookup tables into aGravatar reimar2009-12-31
| | | | | | | | | | | | | | separate file. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30150 b3059339-0415-0410-9bf9-f77b7e298cf2