summaryrefslogtreecommitdiffstats
path: root/libmpdemux
Commit message (Collapse)AuthorAgeFilesLines
* linux->osdeparpi2003-02-093-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9381 b3059339-0415-0410-9bf9-f77b7e298cf2
* Motion-JPEG RTP streams can now be played. Some MPEG-4 ES video RTParpi2003-02-092-3/+11
| | | | | | | | streams can also be played. patch by Ross Finlayson <finlayson@live.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9371 b3059339-0415-0410-9bf9-f77b7e298cf2
* compile fixhenry2003-02-081-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9346 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1) codecs.conf changed recently and demux_gif no longer needs to spitarpi2003-02-081-11/+7
| | | | | | | | | | | | | out BGR8 upside-down. the workaround for this is removed. 2) fixes a bug so that streaming gifs now works, and removes a workaround no longer needed. now libgif uses mplayer's stream_read function and thus http streaming, etc, works with demux_gif. 3) cosmetic clean-up because i no longer plan to support certain GIF extensions that would be more difficult to implement. patch by Joey Parrish <joey@nicewarrior.org> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9345 b3059339-0415-0410-9bf9-f77b7e298cf2
* disable num_of_packets check, it's unreliablearpi2003-02-041-0/+2
| | | | | | | (multiple bugreports on -users) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9274 b3059339-0415-0410-9bf9-f77b7e298cf2
* Restruct by Ross Finlayson <finlayson@live.com>bertrand2003-02-034-164/+341
| | | | | | | | | The code now supports 'QuickTime generic' RTP streams (the "X-QT" MIME type), which - thanks to the QuickTime codecs - makes it possible to play more QuickTime RTP streams. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9251 b3059339-0415-0410-9bf9-f77b7e298cf2
* - ignore movi_end if reading from stdinarpi2003-02-021-6/+6
| | | | | | | - assume I-only stream if no index (buggy seekable avi is still better than non-seekable) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9229 b3059339-0415-0410-9bf9-f77b7e298cf2
* debugarpi2003-02-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9222 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix default device (manpage says /dev/video0, /dev/video often is a directory)colin2003-02-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9217 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix off-by-one error messagecolin2003-02-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9216 b3059339-0415-0410-9bf9-f77b7e298cf2
* xmms_demuxer missing symbolarpi2003-02-021-0/+1
| | | | | | | patch by Balatoni Denes <pnis@coder.hu> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9212 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l... ogg-in-avi (type 0xFFFE) fixarpi2003-01-291-6/+7
| | | | | | | | sizeof(WAVEFORMATEX) is 18, since i've fixed struct align, so 2*sizeof(WAVEFORMATEX) is !=40 any more. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9164 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed nonsense (and confusing) defaultsarpi2003-01-281-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9150 b3059339-0415-0410-9bf9-f77b7e298cf2
* type autodetection (from filemask/filelist extension)arpi2003-01-281-1/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9149 b3059339-0415-0410-9bf9-f77b7e298cf2
* - mpeg extensions removed, it causes misdetction of renamed avi/asf filesarpi2003-01-281-5/+6
| | | | | | | | | - .mp4 added - playlist exts removed, since DEMUX_TYPE_PLAYLIST is dummy, it will never return demuxer!=NULL git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9135 b3059339-0415-0410-9bf9-f77b7e298cf2
* argh, i forgot to 'cvs add' it (again)arpi2003-01-281-0/+213
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9134 b3059339-0415-0410-9bf9-f77b7e298cf2
* libgif/libungif based demuxer support for libmpdemux.arpi2003-01-284-2/+36
| | | | | | | patch by Joey Parrish <joey@nicewarrior.org> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9130 b3059339-0415-0410-9bf9-f77b7e298cf2
* Attached PATCH fixes the case, when data-flag and reference flags are set andarpi2003-01-271-1/+1
| | | | | | | | | mplayer exits the demuxer with error (return 0), but without giving a reason As QT-Specs say in this case the reference shuld be used, I fixed it that way. Fabian Franz <FabianFranz@gmx.de> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9126 b3059339-0415-0410-9bf9-f77b7e298cf2
* 32 bpp is a valid color depth. Fixes 0-bit rle reportsrtognimp2003-01-261-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9114 b3059339-0415-0410-9bf9-f77b7e298cf2
* added TVI_CONTROL_TUN_SET_NORMgabucino2003-01-261-0/+2
| | | | | | | | (making the 'dummy' v4l driver work again) (however on channel switch it goes sig11 in key_events somebody pls fix) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9095 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetic for 0.90, printf->mp_msg (hm..probably arpi will piss of me?:)alex2003-01-241-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9080 b3059339-0415-0410-9bf9-f77b7e298cf2
* raw mpeg4-es support (you need to set -fps manually!)arpi2003-01-234-8/+78
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9070 b3059339-0415-0410-9bf9-f77b7e298cf2
* 16cif,sif,uyvymichael2003-01-231-1/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9069 b3059339-0415-0410-9bf9-f77b7e298cf2
* raw video demuxer, requested by Michaelarpi2003-01-224-2/+138
| | | | | | | (try mplayer -rawvideo on:cif mobile.cif) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9066 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10larpi2003-01-191-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9033 b3059339-0415-0410-9bf9-f77b7e298cf2
* - added some morearpi2003-01-191-3/+15
| | | | | | | | - 10l: MPEG_ES shouldn't be forced, the MPEG_PS demuxer will detect it and switch PS->ES, but ES->PS will never happen! git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9009 b3059339-0415-0410-9bf9-f77b7e298cf2
* Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.arpi2003-01-194-21/+35
| | | | | | | patch by Andriy N. Gritsenko <andrej@lucky.net> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9008 b3059339-0415-0410-9bf9-f77b7e298cf2
* extension-based filetype detection for headerless files (mp3 vs mpeg, etc)arpi2003-01-194-29/+105
| | | | | | | inspired by patch by Fabian Franz <FabianFranz@gmx.de> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9007 b3059339-0415-0410-9bf9-f77b7e298cf2
* Support for MPEG-4 (AAC) audio RTSP/RTPbertrand2003-01-181-0/+17
| | | | | | | Patch by Ross Finlayson <finlayson@live.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8988 b3059339-0415-0410-9bf9-f77b7e298cf2
* telecine detectionarpi2003-01-161-1/+23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8968 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed the well-known DVD/DVB audio delay bug :)arpi2003-01-162-1/+31
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8966 b3059339-0415-0410-9bf9-f77b7e298cf2
* Removed the hardcoded cdrom device.bertrand2003-01-151-75/+39
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8963 b3059339-0415-0410-9bf9-f77b7e298cf2
* Removed the hardcoded /dev/cdrom for NetBSD and added an work aroundbertrand2003-01-151-4/+4
| | | | | | | | for problem with cdparanoia. Patch from Frederick Bruckman <fredb@immanent.net> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8959 b3059339-0415-0410-9bf9-f77b7e298cf2
* bunkus: Encapsulated arguments to #define in ( ... ) so that the #defines ↵mosu2003-01-151-1/+1
| | | | | | can be safely used like functions: mydef(flag ? val1 : val2) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8958 b3059339-0415-0410-9bf9-f77b7e298cf2
* sanity checks - patch by Fabian Franz <FabianFranz@gmx.de>arpi2003-01-141-6/+9
| | | | | | | cache results of strchr() calls git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8956 b3059339-0415-0410-9bf9-f77b7e298cf2
* NTSC is 29.97 fps, not 30. wrong values here are likely to causerfelker2003-01-142-2/+2
| | | | | | | | duplicated frames in mencoder if used with fixed-fps tv cards and in any case they'll result in horrible jerky video. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8954 b3059339-0415-0410-9bf9-f77b7e298cf2
* better cache size defaultsarpi2003-01-131-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8940 b3059339-0415-0410-9bf9-f77b7e298cf2
* do not discard cache content at seeking type=STREAMTYPE_STREAMarpi2003-01-131-5/+10
| | | | | | | (fixes quicktime streaming at low cache fill) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8939 b3059339-0415-0410-9bf9-f77b7e298cf2
* patch adds support for MOV-Reference-Files.arpi2003-01-132-5/+21
| | | | | | | | | | it uses d_video queue to store playlist entries as strz. It also makes sure, that unnecessary items like qt5gateQT are removed and that the url/basepath is added to "local files" by Fabian Franz <FabianFranz@gmx.de> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8938 b3059339-0415-0410-9bf9-f77b7e298cf2
* check if seeking supported, otherwise fallback to null readingarpi2003-01-121-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8930 b3059339-0415-0410-9bf9-f77b7e298cf2
* (hopefully) fixed .mov streamingarpi2003-01-121-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8929 b3059339-0415-0410-9bf9-f77b7e298cf2
* sanity checkarpi2003-01-121-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8928 b3059339-0415-0410-9bf9-f77b7e298cf2
* upsz :))))))))))))))pontscho2003-01-122-3/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8927 b3059339-0415-0410-9bf9-f77b7e298cf2
* this patch adds an fallback to playlist (any but the plaintext-list format)arpi2003-01-121-1/+1
| | | | | | | | after all demuxers failed. so -playlist is not needed any more! patch by Fabian Franz <FabianFranz@gmx.de>, with some small modifications git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8926 b3059339-0415-0410-9bf9-f77b7e298cf2
* Finally commented out the code for autodetection based on the extension.bertrand2003-01-111-2/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8891 b3059339-0415-0410-9bf9-f77b7e298cf2
* buffer overflow fix :)arpi2003-01-101-2/+2
| | | | | | | ported from xine git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8881 b3059339-0415-0410-9bf9-f77b7e298cf2
* check if prop_hdr==NULL insteda of sig11arpi2003-01-091-5/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8853 b3059339-0415-0410-9bf9-f77b7e298cf2
* - always print the longest stream in info, not the selected onearpi2003-01-061-7/+17
| | | | | | | | - handle teh case when user forces nonexistant streams (-aid/-vid) (based on Filip's patch) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8831 b3059339-0415-0410-9bf9-f77b7e298cf2
* Return another error code for timeout.bertrand2003-01-061-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8825 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l bug...bertrand2003-01-061-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8824 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sanity checks.filon2003-01-061-1/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8823 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l (was segfaulting on non-dv file)filon2003-01-061-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8822 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l? :)arpi2003-01-061-1/+1
| | | | | | | patch by Stephane Jourdois <mplayer-dev-eng@rubis.org> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8821 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l, hopefully correct fix, before path was always overwritten to '/'atmos42003-01-061-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8818 b3059339-0415-0410-9bf9-f77b7e298cf2
* dirname() (from libgen) dependency removedarpi2003-01-061-5/+9
| | | | | | | patch by "Steven M. Schultz" <sms@2BSD.COM> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8816 b3059339-0415-0410-9bf9-f77b7e298cf2
* i felt that libgen.h will not be portable...arpi2003-01-061-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8814 b3059339-0415-0410-9bf9-f77b7e298cf2
* vcd_read_cue.h -> cue_read.c+harpi2003-01-056-514/+23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8813 b3059339-0415-0410-9bf9-f77b7e298cf2
* -nosound fixhenry2003-01-051-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8800 b3059339-0415-0410-9bf9-f77b7e298cf2
* mosu: Fixed OGG/OGM seeking for XCDs in which the OGG/OGM does not start at ↵mosu2003-01-051-7/+6
| | | | | | pos 0 in the stream git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8796 b3059339-0415-0410-9bf9-f77b7e298cf2
* mosu: subtitles will be cleared after their life time as given in the ↵mosu2003-01-041-4/+33
| | | | | | packet's header has expired and after seeking git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8789 b3059339-0415-0410-9bf9-f77b7e298cf2
* cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)arpi2003-01-045-1/+1049
| | | | | | | patch by Robert Penz <robert.penz@outertech.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8783 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10Lhenry2003-01-041-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8775 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added the ICY 403 "Service Forbiden" error message.bertrand2003-01-041-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8767 b3059339-0415-0410-9bf9-f77b7e298cf2
* - If CDDB fail, try CDDAbertrand2003-01-031-32/+42
| | | | | | | - Support for inexact matches list. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8747 b3059339-0415-0410-9bf9-f77b7e298cf2
* - Now mmst will use the MMS/TCP implementation first, instead of tryingbertrand2003-01-021-5/+5
| | | | | | | | | MMS/HTTP first. - Fixed a bug when reporting ASF redirector for a text/html payload, was generating a seg fault in playtree. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8719 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed stream errors on some cygwin installationsfaust32003-01-021-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8713 b3059339-0415-0410-9bf9-f77b7e298cf2
* supress clicks/noise when changing channelshenry2003-01-011-4/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8704 b3059339-0415-0410-9bf9-f77b7e298cf2
* Obvious patch to avoid undefined behaviour of multiple side effects inarpi2002-12-311-3/+3
| | | | | | | | a single expression. patch by Wolfram Gloger <wmglo@dent.med.uni-muenchen.de> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8672 b3059339-0415-0410-9bf9-f77b7e298cf2
* bunkus: Fixed Ogg/Ogm seeking by discarding the first packet after the seek ↵mosu2002-12-301-2/+9
| | | | | | which may be incomplete git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8656 b3059339-0415-0410-9bf9-f77b7e298cf2
* allow utilization of more v4l buffers, patch by Carsten Schulz ↵henry2002-12-291-15/+14
| | | | | | <carsten@gnocchi.dialup.fu-berlin.de> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8651 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixes (ok, just workarounds) sig11 in playtree/cfgparser's free()arpi2002-12-291-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8650 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed these:arpi2002-12-291-2/+2
| | | | | | | | | - uses video time length instead of audio time length to calculate audio size in fallback - differences in fallback for priv->numberofframes calculation patch by eviv bulgroz <ebulgroz@yahoo.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8647 b3059339-0415-0410-9bf9-f77b7e298cf2
* user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)henry2002-12-283-9/+170
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8628 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added/reordered #includes to silence warnings about "implicit declaration".rathann2002-12-281-4/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8624 b3059339-0415-0410-9bf9-f77b7e298cf2
* This patch adds a call to subcp_recode1(), so this subtitles too arearpi2002-12-281-0/+11
| | | | | | | | processed through iconv(). Kresimir Kukulj