summaryrefslogtreecommitdiffstats
path: root/libmpdemux/parse_mp4.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove some demuxers and decoderswm42012-07-301-173/+0
| | | | | | | | | | | | | | | | | | Most of these demuxers and decoders are provided in better form by libav, while the mplayer builtin ones are essentially unmaintained. The only legimitate use case for not using the libav ones was working around libav bugs or bugs related to the way mplayer uses libav. Instead of trying to keep dead code alive, development effort should go into improving libav or the mplayer libav glue code. Note that the libav demuxer have been preferred over the mplayer builtin ones for a while in mplayer2. There were some exceptions: playing DVDs with dvdnav or playing network sources. (That's because some stream modules and network.c requested explicit file formats, such as DEMUXER_TYPE_MPEG_PS, which mapped to builtin demuxers.) With this commit, they are switched to use libav. One caveat is that the requested format is not passed to libavformat, instead we rely on the auto probing to select the correct libav demuxer (see code in demux_open_stream()).
* Merge svn changes up to r30643Uoti Urpala2010-03-101-1/+2
|\
| * libmpdemux: Mark functions not used outside of their files as static.diego2010-02-171-1/+2
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30612 b3059339-0415-0410-9bf9-f77b7e298cf2
| * whitespace cosmetics: Remove all trailing whitespace.diego2009-05-131-3/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29305 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Remove trailing whitespace from most filesUoti Urpala2009-07-071-4/+3
| |
* | Merge svn changes up to r29134Uoti Urpala2009-04-021-3/+0
|\|
| * Remove unnecessary malloc.h #includes and related #ifdeffery.diego2009-04-021-4/+0
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29126 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add config.h #include, necessary for HAVE_MALLOC_H check.diego2009-04-011-0/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29123 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28641Uoti Urpala2009-02-181-1/+1
|\| | | | | | | | | | | | | | | Convert vo_x11_border (used in vo_gl/gl2 though the vo_gl_border macro) to use a wrapper macro in old-style VOs which do not provide a VO object argument. Before this function had an explicit global_vo argument in vo_gl/gl2. New vo_vdpau uses it too so use the same mechanism as most other functions.
| * Convert HAVE_MALLOC_H into a 0/1 definition, fixes the warning:diego2009-02-171-1/+1
| | | | | | | | | | | | | | mem.c:32:5: warning: "HAVE_MALLOC_H" is not defined git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28629 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r28149Uoti Urpala2008-12-141-5/+21
|\|
| * license header consistency cosmeticsdiego2008-12-131-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28144 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Replace informal GPL notes by standard GPL header.diego2008-12-131-5/+21
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28140 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Mark some functions staticUoti Urpala2008-04-231-1/+1
|/ | | | | | These functions aren't used outside their file and have no prototype in any header. Based on a forgotten patch from 2006 by Stefan Huehner, (stefan huehner org).
* Add explicit location for headers from the stream/ directory.diego2007-03-151-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22623 b3059339-0415-0410-9bf9-f77b7e298cf2
* decoderConfigLen can be larger than 255 bytesnicodvb2006-06-091-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18667 b3059339-0415-0410-9bf9-f77b7e298cf2
* allow early exit from esds parsing, so decoder info (type & bitrate) arearpi2002-08-051-3/+5
| | | | | | | available even if no codec-specific data or other extras found git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6930 b3059339-0415-0410-9bf9-f77b7e298cf2
* FreeBSD require stdlib.hnexus2002-03-301-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5405 b3059339-0415-0410-9bf9-f77b7e298cf2
* FreeBSD warning fixnexus2002-03-301-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5404 b3059339-0415-0410-9bf9-f77b7e298cf2
* eeh 10l, removed one line too much :(atmos42002-03-251-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5334 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix some silly logical bugs and fix memory cleanup in case mp4_parse_es ↵atmos42002-03-251-23/+33
| | | | | | returned with an error by memsetting the esds struct to 0 on init. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5333 b3059339-0415-0410-9bf9-f77b7e298cf2
* - Add parsing of Sync Layer Descriptoratmos42002-03-241-3/+31
| | | | | | | | - Add a function to cleanup malloced mem from mp4_parse_esds - Fix some weird code from me :) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5306 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l fix memory allocationatmos42002-03-241-6/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5304 b3059339-0415-0410-9bf9-f77b7e298cf2
* Improved MP4 parsing (finally)atmos42002-03-241-0/+114
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5302 b3059339-0415-0410-9bf9-f77b7e298cf2