summaryrefslogtreecommitdiffstats
path: root/libmpdemux
Commit message (Collapse)AuthorAgeFilesLines
* Applied patch from Gregory Kovriga <gkovriga@techunix.technion.ac.il>bertrand2002-09-091-0/+5
| | | | | | | - Url was not properly parsed if an @ was in the file path. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7331 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed messy global 'tv_handle', use stream->priv for that purposearpi2002-09-084-17/+23
| | | | | | | | note: i couldn't test it (only compile test) may be broken :( we're going to an unified demuxer API - required for modularization git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7330 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed get_format/set_formatalex2002-09-081-2/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7320 b3059339-0415-0410-9bf9-f77b7e298cf2
* changed message leveles (too many non-sense info messages)alex2002-09-082-20/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7319 b3059339-0415-0410-9bf9-f77b7e298cf2
* tuner setting isn't mandatory. requested by Jonas Munsin <jmunsin@iki.fi> ↵alex2002-09-081-3/+3
| | | | | | for webcams git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7318 b3059339-0415-0410-9bf9-f77b7e298cf2
* Don't try to reread from the socket if the server says EOFbertrand2002-09-071-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7311 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed an unknown command. Looks like it's a new command from WMS9.bertrand2002-09-071-3/+10
| | | | | | | Changed all the exit by return -1 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7310 b3059339-0415-0410-9bf9-f77b7e298cf2
* removes old input code (forgot to commit this)alex2002-09-071-12/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7309 b3059339-0415-0410-9bf9-f77b7e298cf2
* Check if realloc failed on http_hdr->buffer instead of ptr in ↵bertrand2002-09-071-2/+2
| | | | | | | | | http_response_append, and got rid of ptr which wasn't used anymore. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7305 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo (checking for mpeg twice, instead of mpeg & MPEG)michael2002-09-061-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7303 b3059339-0415-0410-9bf9-f77b7e298cf2
* SPARC gcc generates bad code accessing an unaligned and packed structure memberjkeil2002-09-061-0/+15
| | | | | | | | | | (See gcc problem report PR c/7847); mplayer crashes with SIGBUS signal. Added a workaround: copy the unaligned stucture member to a temporary local variable using memcpy, and use that in the code. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7297 b3059339-0415-0410-9bf9-f77b7e298cf2
* - simpler http_response_append (uses realloc())arpi2002-09-061-16/+8
| | | | | | | | | | - http_response_append addes extra 0 byte to close teh string (some functions like http_is_header_entire() use standard string functions like strstr which requires trailing zero) - check for NULL string in http_is_header_entire() git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7294 b3059339-0415-0410-9bf9-f77b7e298cf2
* Humm, only if __DEBUG_URL is defined, declare the prototype...bertrand2002-09-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7280 b3059339-0415-0410-9bf9-f77b7e298cf2
* Applied patch for OpenBDS from Marc Espie (submitted by Björn Sandell ↵bertrand2002-09-041-4/+54
| | | | | | <biorn@dce.chalmers.se>) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7270 b3059339-0415-0410-9bf9-f77b7e298cf2
* - If fatal error while trying to connect to a WM server, skip other proto.bertrand2002-09-031-2/+8
| | | | | | | - Fix that makes mplayer works with corona(WMS9) servers. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7253 b3059339-0415-0410-9bf9-f77b7e298cf2
* Return -2 for fatal error while connecting to a server.bertrand2002-09-031-4/+6
| | | | | | | Fatal are unable to resolve name, connection timeout... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7252 b3059339-0415-0410-9bf9-f77b7e298cf2
* Checked if the connection succeeded before writing in the socket.bertrand2002-09-031-0/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7251 b3059339-0415-0410-9bf9-f77b7e298cf2
* gcc 2.95.4 doesn't like VAR==value without spacesarpi2002-09-021-1/+1
| | | | | | | patch by Martin Olschewski <olschewski@zpr.uni-koeln.de> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7246 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed obsolete itemsalex2002-09-011-13/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7233 b3059339-0415-0410-9bf9-f77b7e298cf2
* audio in layer is used only bu tvi_v4l, don't compile for others.arpi2002-08-314-9/+28
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7214 b3059339-0415-0410-9bf9-f77b7e298cf2
* user-data moved one -v uparpi2002-08-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7209 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix cache disable for live.comatmos42002-08-311-6/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7205 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed buggy fd<0 check for disallowing dumpstream/cachearpi2002-08-311-5/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7203 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1000l - libmpdvdkit2 fix, thx Nexusarpi2002-08-311-0/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7197 b3059339-0415-0410-9bf9-f77b7e298cf2
* assume $(CC) can compile c++ - fixes compile with non-default compilerarpi2002-08-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7169 b3059339-0415-0410-9bf9-f77b7e298cf2
* v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>alex2002-08-303-16/+73
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7164 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l bug, found by Nexusarpi2002-08-291-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7150 b3059339-0415-0410-9bf9-f77b7e298cf2
* use dir/libname.a instead of -Ldir -lnamearpi2002-08-291-1/+1
| | | | | | | | | partially done by "Steven M. Schultz" <sms@2BSD.COM> Note: some entries (libmpdvdkit, libdha) left unchanged as they may be dynamic and not shipped with mplayer. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7149 b3059339-0415-0410-9bf9-f77b7e298cf2
* new mencoder option -info, to store copyright, title, encoder version etc in AVIarpi2002-08-292-0/+65
| | | | | | | based on patch by "Andriy N. Gritsenko" <andrej@lucky.net> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7146 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed RIFF chunk size - patch by "Andriy N. Gritsenko" <andrej@lucky.net>arpi2002-08-291-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7145 b3059339-0415-0410-9bf9-f77b7e298cf2
* - Tell the RTSP client code to use the string "mplayer" in RTSParpi2002-08-291-1/+2
| | | | | | | | | | "User-Agent:" fields. NOTE: This requires an up-to-date version of the LIVE.COM Streaming Media libraries. - Fix a bug that could cause mplayer to crash on exit if a "rtsp://" URL was bad. patch by Ross Finlayson <finlayson@live.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7144 b3059339-0415-0410-9bf9-f77b7e298cf2
* inet_aton fallback support by Joey Parrish <joey@yunamusic.com>bertrand2002-08-291-0/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7136 b3059339-0415-0410-9bf9-f77b7e298cf2
* mostly compiler warning fixes, some small bugfixarpi2002-08-281-1/+1
| | | | | | | patch by Dominik Mierzejewski <dominik@rangers.eu.org> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7128 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixes problems when new line is just '\n' and not '\r\n' and enabled ↵alex2002-08-281-2/+2
| | | | | | html-markup ignore. Patch by Piotr Krukowiecki <piotr@pingu.ii.uj.edu.pl> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7116 b3059339-0415-0410-9bf9-f77b7e298cf2
* - added matrix cracking/debugging code - disabledarpi2002-08-271-1/+28
| | | | | | | - use real codec headers for sipr git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7106 b3059339-0415-0410-9bf9-f77b7e298cf2
* Martin Olschewski <olschewski@zpr.uni-koeln.de>: [PATCH] ai_oss.c should ↵alex2002-08-261-0/+5
| | | | | | check for USE_OSS_AUDIO git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7092 b3059339-0415-0410-9bf9-f77b7e298cf2
* some files has some shit before teh audio/video headers...arpi2002-08-251-9/+22
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7086 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l - fixed chunktab size calculationarpi2002-08-241-1/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7085 b3059339-0415-0410-9bf9-f77b7e298cf2
* - changed re-muxed packet structure (see struct dp_hdr_t)arpi2002-08-241-35/+62
| | | | | | | | now the packets can be encapsulated into avi or other file formats - skip redundant/resent fragments (bit 0x20 set of first byte of frag) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7082 b3059339-0415-0410-9bf9-f77b7e298cf2
* v4l capture update by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>arpi2002-08-224-11/+13
| | | | | | | some silly bugs slipped through.. here is the fix git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7071 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix ai_oss.c compilation on non linux systems - by Bernd Ernesti ↵jaf2002-08-221-0/+9
| | | | | | <mplayer@lists.veego.de> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7067 b3059339-0415-0410-9bf9-f77b7e298cf2
* new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:arpi2002-08-215-0/+629
| | | | | | | | | | | | | - multithreaded audio/video buffering (I know mplayer crew hates threads but it seems to me as the only way of doing reliable a/v capture) - a/v timebase synchronization (sample count vs. gettimeofday) - "immediate" mode support for mplayer - fixed colorspace stuff - RGB?? and YUY2 modes now work as expected - native ALSA audio capture - separated audio input layer git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7061 b3059339-0415-0410-9bf9-f77b7e298cf2
* new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:arpi2002-08-215-270/+729
| | | | | | | | | | | | | - multithreaded audio/video buffering (I know mplayer crew hates threads but it seems to me as the only way of doing reliable a/v capture) - a/v timebase synchronization (sample count vs. gettimeofday) - "immediate" mode support for mplayer - fixed colorspace stuff - RGB?? and YUY2 modes now work as expected - native ALSA audio capture - separated audio input layer git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7059 b3059339-0415-0410-9bf9-f77b7e298cf2
* ogg (.ogm) text subtitles supportarpi2002-08-141-4/+81
| | | | | | | based on patch by Chris Forno <jcore@m-net.arbornet.org> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7011 b3059339-0415-0410-9bf9-f77b7e298cf2
* - Create and set up a "BITMAPINFOHEADER" and "WAVEFORMATEX" structure forarpi2002-08-141-12/+41
| | | | | | | | | video and audio (respectively) RTP streams. (This allows RTP streams that use non MPEG codecs to work.) patch by Ross Finlayson <finlayson@live.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7009 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo fixes by Ross Finlayson <finlayson@live.com>arpi2002-08-142-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7008 b3059339-0415-0410-9bf9-f77b7e298cf2
* disable cache if stream->fd<0 (no regular file/pipe but some special thing)arpi2002-08-141-0/+7
| | | | | | | Ross Finlayson <finlayson@live.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7007 b3059339-0415-0410-9bf9-f77b7e298cf2
* corrects an off-by-one error when trying to seek beyond the end of file.arpi2002-08-141-1/+1
| | | | | | | patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7003 b3059339-0415-0410-9bf9-f77b7e298cf2
* RV20 A-V desync fixed - use timestamp hack only for RV30arpi2002-08-141-6/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6996 b3059339-0415-0410-9bf9-f77b7e298cf2
* RV40 supportarpi2002-08-121-1/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6983 b3059339-0415-0410-9bf9-f77b7e298cf2
* messages moved againjaf2002-08-081-20/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6952 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10larpi2002-08-061-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6944 b3059339-0415-0410-9bf9-f77b7e298cf2
* detection reordered. note: raw DV detection should be more reliable.arpi2002-08-061-12/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6943 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
* support for .mp4 with .mp3 audioarpi2002-08-051-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6929 b3059339-0415-0410-9bf9-f77b7e298cf2
* raw .dv stream demuxer by Alexander Neundorf <neundorf@kde.org>arpi2002-08-054-3/+267
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6926 b3059339-0415-0410-9bf9-f77b7e298cf2
* PPC endianess fix by Colin Leroy <colin@colino.net>arpi2002-08-051-14/+53
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6919 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed 'eof at 66s' bugarpi2002-08-051-14/+40
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6917 b3059339-0415-0410-9bf9-f77b7e298cf2
* applied live.com streaming patch (-sdp and rtsp:// support) by Ross ↵arpi2002-08-058-8/+556
| | | | | | | | | Finlayson <finlayson@live.com> see <http://www.live.com/mplayer/> for details. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6911 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10000l - didn't clear new stream struct, causing possible sig11 in cache layerarpi2002-08-041-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6893 b3059339-0415-0410-9bf9-f77b7e298cf2
* detection of badly interleaved avi files and auto-switch to -niarpi2002-08-041-10/+34
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6885 b3059339-0415-0410-9bf9-f77b7e298cf2
* new_demux_packet: allocate 8 bytes too mucharpi2002-08-041-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6884 b3059339-0415-0410-9bf9-f77b7e298cf2
* count blocks by rounded-up chunksizes instead of chunks -arpi2002-08-023-1/+13
| | | | | | | | we need full emulation of dshow avi demuxer bugs :( fixes silly nandub-style a-v delaying in avi with vbr mp3... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6872 b3059339-0415-0410-9bf9-f77b7e298cf2
* skip 'pnot' and 'PICT' - fixes incoming/1.movarpi2002-08-011-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6866 b3059339-0415-0410-9bf9-f77b7e298cf2
* There appears to be a trivial namespace error in determining the validarpi2002-07-301-1/+1
| | | | | | | | | | chapter range. It appears that "dvd_title" should be used with tt_srpt->title[], and "ttn-1" should be used with vts_file->vts_ptt_srpt->title[]. patch by Dave Sainty <dave@dtsp.co.nz> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6854 b3059339-0415-0410-9bf9-f77b7e298cf2
* ogm audio format id is in hex, not decarpi2002-07-301-1/+1
| | | | | | | patch by Moritz Bunkus <moritz@bunkus.org> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6851 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add uninit to the avi demuxeralbeu2002-07-262-0/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6817 b3059339-0415-0410-9bf9-f77b7e298cf2
* warning fixesatmos42002-07-261-1/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6815 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10L free the cachealbeu2002-07-261-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6811 b3059339-0415-0410-9bf9-f77b7e298cf2
* codmetics :)arpi2002-07-251-7/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6792 b3059339-0415-0410-9bf9-f77b7e298cf2
* DVD Closed Captioning support, patch by Matteo Giani <matgiani@ctonet.it>, ↵atmos42002-07-251-1/+12
| | | | | | small changes by me. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6785 b3059339-0415-0410-9bf9-f77b7e298cf2
* Workaround for seeking multiangle discs with missing sml_agli[] table, as aarpi2002-07-231-6/+33
| | | | | | | | fallback it uses VOB/CELL id search (slow) Thanks to Jeffrey Hammel for his multi-angle DVD donation! :) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6775 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix vbr muxing and win32 codec crash on initalbeu2002-07-213-5/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6764 b3059339-0415-0410-9bf9-f77b7e298cf2
* workaround for empty version1 audio headers (bugreport by Sascha Sommer)arpi2002-07-121-1/+1
| | | |