summaryrefslogtreecommitdiffstats
path: root/libmpdemux
Commit message (Collapse)AuthorAgeFilesLines
* export getbits() as mp_getbits()nicodvb2005-03-201-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14968 b3059339-0415-0410-9bf9-f77b7e298cf2
* missing declaration, fixes:rathann2005-03-181-0/+1
| | | | | | | muxer.c:36: warning: implicit declaration of function `muxer_init_muxer_lavf' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14956 b3059339-0415-0410-9bf9-f77b7e298cf2
* Rather simple patch for RAWDV demuxer which lets it say whats the totalrtognimp2005-03-092-0/+25
| | | | | | | | movie length. Patch by Oded Shimon git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14935 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed support for mp3 at <32000 sample_ratenicodvb2005-03-071-2/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14928 b3059339-0415-0410-9bf9-f77b7e298cf2
* added support for other codecs (mpeg4/h264/aac) in mpeg-ps parsing the PSMnicodvb2005-03-062-7/+109
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14924 b3059339-0415-0410-9bf9-f77b7e298cf2
* alac support via lavc decoderrtognimp2005-03-061-0/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14923 b3059339-0415-0410-9bf9-f77b7e298cf2
* converted vframerate to CONF_TYPE_FLOATnicodvb2005-03-041-19/+40
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14915 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l to reimar.. sh_audio->samplerate and sh_audio->i_bps are not the samerfelker2005-03-041-4/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14911 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix very old ra files with no fourccrtognimp2005-03-031-1/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14910 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix some 28.8 ra files with four text stringsrtognimp2005-03-031-3/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14909 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix rm files with a really big index chunk.reimar2005-03-031-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14898 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make nuv files work on bigendian (but old nuv files created with mencoderreimar2005-03-032-0/+23
| | | | | | | wont play anymore - before they would have worked with mplayer on be) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14897 b3059339-0415-0410-9bf9-f77b7e298cf2
* recalculate frame duration after soft telecinenicodvb2005-03-031-19/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14895 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix:rathann2005-03-012-6/+6
| | | | | | | | | | | | | | | | mpeg_hdr.c:212: warning: no return statement in function returning non-void mpeg_hdr.c:262: warning: suggest parentheses around assignment used as truth value mpeg_hdr.c:264: warning: suggest parentheses around assignment used as truth value mpeg_hdr.c:270: warning: suggest parentheses around assignment used as truth value mpeg_hdr.c:275: warning: suggest parentheses around assignment used as truth value mpeg_hdr.c:212: warning: control reaches end of non-void function mp4_header_process_vop() return value isn't used anywhere anyway. Approved by Nico. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14888 b3059339-0415-0410-9bf9-f77b7e298cf2
* missing #include (for malloc and free)rathann2005-03-011-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14887 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l wrong binary operator when setting progressive framenicodvb2005-03-011-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14882 b3059339-0415-0410-9bf9-f77b7e298cf2
* telecine now works in display order (rather than decoding), as far as there ↵nicodvb2005-03-011-26/+44
| | | | | | are no more than 4 consecutive b-frames; added support for FMP4 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14881 b3059339-0415-0410-9bf9-f77b7e298cf2
* set sh_audio->delay ins audio-only case so that correct time is displayedreimar2005-03-011-0/+2
| | | | | | | after seeking. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14878 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix the ogg fourcc nightmare!!!rfelker2005-02-272-14/+17
| | | | | | | | | | | | | | | | | The problem: once upon a time, windows idiots decided to try to store vorbis-in-ogg-in-avi. Of course this failed miserably, but they used the audio format tag 0xfffe for "extended" to do this. Later someone working on MPlayer somehow decided 0xfffe was the format for vorbis, which is nonsense, and now that's conflicting with real wav files with extended audio format. This patch changes demux_ogg (and mkv) to use sane fourcc's for vorbis and theora and gets rid of the 0xfffe nonsense so hopefully wav files with extended audio will work now. If there are problems, we'll have to find workarounds...and drive an 18-wheeler full of cola thru the house of whoever wrote this 0xfffe nonsense in MPlayer to begin with... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14844 b3059339-0415-0410-9bf9-f77b7e298cf2
* soft telecine support! :)) patch by nicorfelker2005-02-271-2/+73
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14841 b3059339-0415-0410-9bf9-f77b7e298cf2
* more on tivo vstream support.. 1000l to Joey for forgetting this file and ↵rfelker2005-02-271-0/+184
| | | | | | breaking MPlayer build! :) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14839 b3059339-0415-0410-9bf9-f77b7e298cf2
* added a stream module for the vstream client libraryjoey2005-02-274-2/+9
| | | | | | | allows MPlayer to stream video from a properly equipped Tivo git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14837 b3059339-0415-0410-9bf9-f77b7e298cf2
* 50000l: fixed various memleaks; CC discontibuities aren't necessarily error ↵nicodvb2005-02-251-16/+35
| | | | | | conditions git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14826 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove file-global mpadec, add ad_driver member to sh_audio_t instead.hzoli2005-02-251-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14820 b3059339-0415-0410-9bf9-f77b7e298cf2
* both reorder and noreorder flags are now availablenicodvb2005-02-251-4/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14810 b3059339-0415-0410-9bf9-f77b7e298cf2
* disabled by default frame reorderingnicodvb2005-02-241-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14800 b3059339-0415-0410-9bf9-f77b7e298cf2
* framerate autodetection for H264 in raw/ts streamsnicodvb2005-02-243-0/+173
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14799 b3059339-0415-0410-9bf9-f77b7e298cf2
* replace bzero() with memset()nicodvb2005-02-231-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14780 b3059339-0415-0410-9bf9-f77b7e298cf2
* renamed init_adelay to vdelay with opposite rangenicodvb2005-02-221-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14773 b3059339-0415-0410-9bf9-f77b7e298cf2
* switch from DIVX -> FMP4 fourcc for libavcodecmichael2005-02-221-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14767 b3059339-0415-0410-9bf9-f77b7e298cf2
* Theora fixes:henry2005-02-221-2/+2
| | | | | | | | | - do not use negative stride (fixes -vf pp crash) - pass true image dimensions to VO, not the aligned ones (fixes incorrect aspect ratio bug & black bar under video) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14764 b3059339-0415-0410-9bf9-f77b7e298cf2
* initial, extremely experimental, libavformat muxer; don't expect anything to ↵nicodvb2005-02-214-0/+315
| | | | | | work yet git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14758 b3059339-0415-0410-9bf9-f77b7e298cf2
* new mpeg muxer compatible with dvd/[s]vcd; small changes in the muxer layer ↵nicodvb2005-02-215-358/+2368
| | | | | | (sanity checks in the muxer_init functions) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14754 b3059339-0415-0410-9bf9-f77b7e298cf2
* swf and flv through libavformatalex2005-02-211-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14752 b3059339-0415-0410-9bf9-f77b7e298cf2
* added support for raw udp:// streamingnicodvb2005-02-171-3/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14721 b3059339-0415-0410-9bf9-f77b7e298cf2
* Mp3On4 demuxer supportrtognimp2005-02-151-0/+2
| | | | | | | Patch by Larry Ruedisueli lwr at audioresearchlabs dot com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14707 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10lfaust32005-02-131-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14696 b3059339-0415-0410-9bf9-f77b7e298cf2
* avisynth demuxer patch by Gianluigi Tiesi <mplayer at netfarm.it>faust32005-02-136-3/+632
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14694 b3059339-0415-0410-9bf9-f77b7e298cf2
* Memleak fixes. Based on patch by Timothy Lee (timothy lee at siriushk com).reimar2005-02-062-11/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14667 b3059339-0415-0410-9bf9-f77b7e298cf2
* bzero is deprecated patch by Gianluigi Tiesi <mplayer at netfarm.it>faust32005-02-041-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14643 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix for streams that do not send a bitratereimar2005-02-031-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14640 b3059339-0415-0410-9bf9-f77b7e298cf2
* discard lavf packets with wrong idsnicodvb2005-01-301-2/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14612 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix possible hang when playing broken MP3 from linear stream and removereimar2005-01-291-29/+26
| | | | | | | duplicate code. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14609 b3059339-0415-0410-9bf9-f77b7e298cf2
* several sets of headers declare global variables in them, which causes ↵iive2005-01-292-3/+6
| | | | | | | | | multiple definition errors with gcc 4.x patch by Alexander Strange <astrange ithinksw.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14608 b3059339-0415-0410-9bf9-f77b7e298cf2
* Do not read any more data at eof: if got eof in the middle of an audiortognimp2005-01-241-0/+1
| | | | | | | | block, ad_realaudio requests more data even if sh->audio->eof Fixes sig11 at eof of hotel_california_ra5.1_640x480_30s.rmvb git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14587 b3059339-0415-0410-9bf9-f77b7e298cf2
* Be less verbose with -v (do not print a line for each demuxed packet)rtognimp2005-01-241-2/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14586 b3059339-0415-0410-9bf9-f77b7e298cf2
* Reset stream eof after parsing header, fixes bug #218reimar2005-01-231-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14582 b3059339-0415-0410-9bf9-f77b7e298cf2
* Reduce excessive verbosity.diego2005-01-221-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14579 b3059339-0415-0410-9bf9-f77b7e298cf2
* More user-friendly stream, -xid and -slang info output even in non-verbose ↵mosu2005-01-221-8/+6
| | | | | | mode part 2. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14575 b3059339-0415-0410-9bf9-f77b7e298cf2
* replaced bzero() with memset(); stream_type 0x0f is AACnicodvb2005-01-221-13/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14572 b3059339-0415-0410-9bf9-f77b7e298cf2
* Play RV30 with 8-elements cmsg24rtognimp2005-01-221-5/+15
| | | | | | | Fixes rv30_cmsg24_test.rmvb (now in samples) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14569 b3059339-0415-0410-9bf9-f77b7e298cf2
* More user-friendly stream, -xid and -slang info output even in non-verbose mode.mosu2005-01-211-5/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14563 b3059339-0415-0410-9bf9-f77b7e298cf2
* Handle missing palettes in the info part of VobSubs in Matroska files ↵mosu2005-01-212-0/+3
| | | | | | correctly by giving mplayer a NULL pointer. This way it will use a default palette instead of black only. Patch by Csillag Kristof (fenwick () freemail ! hu) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14562 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove all setlocale calls, they break the behaviour of sscanf andreimar2005-01-201-3/+1
| | | | | | | | strcasecmp, especially with tr_TR locale - and do not seem to be good for anything. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14543 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l, completely broken pointer arithmetic causing crashes.reimar2005-01-191-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14536 b3059339-0415-0410-9bf9-f77b7e298cf2
* If asf/tcp fails, asf/http used a wrong portrtognimp2005-01-161-0/+3
| | | | | | | Fixes mms://mms.thestreet.com/cramer011205.wma git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14526 b3059339-0415-0410-9bf9-f77b7e298cf2
* More support for AVC in Matroska.mosu2005-01-161-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14516 b3059339-0415-0410-9bf9-f77b7e298cf2
* set sub_utf8 only when actually using mkv subtitles, will break externalreimar2005-01-161-2/+1
| | | | | | | subtitles (-sub) otherwise. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14514 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move generic length and percent pos calculation to demuxer.creimar2005-01-156-26/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14503 b3059339-0415-0410-9bf9-f77b7e298cf2
* Decode MP3 in rm filesrtognimp2005-01-151-4/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14499 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l, no endian conversion on floats!reimar2005-01-131-16/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14491 b3059339-0415-0410-9bf9-f77b7e298cf2
* Do not access word-sized elements on potentially unaligned memory addresses. ↵mosu2005-01-131-1/+1
| | | | | | RISC processors usually do not like that. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14490 b3059339-0415-0410-9bf9-f77b7e298cf2
* automatic fps calculation for mpeg4 in raw stream/mpeg-tsnicodvb2005-01-123-2/+166
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14478 b3059339-0415-0410-9bf9-f77b7e298cf2
* Call subcp_close when closing the demuxerreimar2005-01-111-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14462 b3059339-0415-0410-9bf9-f77b7e298cf2
* free http field_name to fix memleakreimar2005-01-111-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14461 b3059339-0415-0410-9bf9-f77b7e298cf2
* Support for AVC in Matroska.mosu2005-01-112-0/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14459 b3059339-0415-0410-9bf9-f77b7e298cf2
* replace almost obsolete email address: snel@phys.uu.nl -> rsnel@cube.dyndns.orgrik2005-01-082-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14430 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed broken seeking in mpeg-es files; syncword seeking for all 3 video codecsnicodvb2005-01-081-4/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14427 b3059339-0415-0410-9bf9-f77b7e298cf2
* Reduce index verbosityrtognimp2005-01-061-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14404 b3059339-0415-0410-9bf9-f77b7e298cf2
* Real multirate files supportrtognimp2005-01-061-27/+231
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14403 b3059339-0415-0410-9bf9-f77b7e298cf2
* Print waveheader only when verbosereimar2005-01-061-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14396 b3059339-0415-0410-9bf9-f77b7e298cf2
* added support for ATSC tuner and conf.filenicodvb2005-01-063-3/+58
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14383 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use libc qsort to sort ODML index.reimar2005-01-021-40/+5
| | | | | | | Based on patch by phillip at phdcam dot com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14298 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix quicksort to avoid stack overflow and extreme runtimesreimar2004-12-311-6/+22
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14288 b3059339-0415-0410-9bf9-f77b7e298cf2
* replaced deprecated FE_GET_EVENT with FE_READ_STATUS (only for DVB_HEAD); ↵nicodvb2004-12-311-29/+31
| | | | | | added a workaround for drivers that don't support FE_TIMEDOUT git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14283 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix channels, sample rate and sample size for 3gp filesrtognimp2004-12-291-8/+26
| | | | | | | Patch by Richard van der Hoff [ richardv at mxtelecom dot com ] git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14280 b3059339-0415-0410-9bf9-f77b7e298cf2
* TwinVQ decoder and demuxerrtognimp2004-12-294-2/+230
|</