aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
Commit message (Collapse)AuthorAge
...
| * 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
* | Merge svn changes up to r30104Gravatar Uoti Urpala2009-12-30
|\| | | | | | | Ignore the broken correct-pts change in r30100.
* | Merge svn changes up to r30065Gravatar Uoti Urpala2009-12-29
|\ \
| | * Do not auto-generate the C code to handle PCI vendor and device names.Gravatar diego2009-12-20
| | | | | | | | | | | | | | | | | | | | | This part of the code does not change so there is no point in generating it. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30094 b3059339-0415-0410-9bf9-f77b7e298cf2
| | * Do not autogenerate vidix/pci_names.h.Gravatar diego2009-12-20
| | | | | | | | | | | | | | | | | | | | | Its contents is always the same, so there is no point in generating it. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30088 b3059339-0415-0410-9bf9-f77b7e298cf2
| | * Run vidix/pci_db2c.awk directly instead of passing it to awk.Gravatar diego2009-12-20
| | | | | | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30077 b3059339-0415-0410-9bf9-f77b7e298cf2
| | * Experimental support for external libass.Gravatar reimar2009-12-19
| |/ | | | | | | | | | | | | So far probably only works with the libass from Ubuntu 9.10 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30066 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add x11_common as dependency for OpenGL with X11 backend.Gravatar reimar2009-12-19
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30064 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r30055Gravatar Uoti Urpala2009-12-18
|\|
| * DShow TV input needs part of the our DirectShow code, so add the properGravatar reimar2009-12-09
| | | | | | | | | | | | | | dependencies to the Makefile. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29985 b3059339-0415-0410-9bf9-f77b7e298cf2
* | build: Generate version numbers for gitGravatar Uoti Urpala2009-11-23
| | | | | | | | | | | | | | | | | | | | Update the version.sh script for git so it'll generate version numbers more useful than "UNKNOWN". At the moment it only generates the short SHA1 name, but adding a tag as a starting point should allow more useful output. Rather than update the Makefile logic that tried to guess whether the svn revision had changed since the last version.h update, just run the version.sh script from configure so the version is updated at least at that time.