summaryrefslogtreecommitdiffstats
path: root/stream
Commit message (Expand)AuthorAgeFilesLines
* Add support for smil playlist served over realrtsprtogni2007-02-183-3/+17
* Simplify code by using separate variables for large common expressions.reimar2007-02-151-22/+26
* More strncat() misuses.rtogni2007-02-111-5/+5
* strncat() misuses, may have been exploitable.rtogni2007-02-111-3/+3
* More boundary checks for fixed-length arrays. Some of them may have been rtogni2007-02-111-4/+12
* Quick hack mostly for documentation purposes to make -aid work with mms://reimar2007-02-081-0/+10
* Fix a few gcc warnings, approved by Diego and Reimar.rathann2007-02-053-4/+2
* Use defined() syntax instead without ().reimar2007-02-041-1/+1
* Add timeout to tcp connections, avoid hanging forever.rtogni2007-02-041-0/+7
* Fix base64_encode() max output length checking.uau2007-01-281-4/+3
* Accept rdt packets with "is-reliable" flag setrtogni2007-01-281-1/+1
* Fix FSF address and otherwise broken license headers.diego2007-01-223-9/+5
* at open() assign *file_format=DEMUXER_TYPE_MPEG_PS to avoid useless demuxer p...nicodvb2007-01-162-0/+5
* GNU/kFreeBSD support, closes Bugzilla #704.diego2007-01-103-6/+6
* Don't drop last rdt packet on eofrtogni2007-01-093-2/+9
* removed static declaration before non-instantiated struct; patch by cehoyos a...nicodvb2007-01-091-1/+1
* Two crash issues fixed:voroshil2007-01-081-1/+9
* Make sure we do not crash when eof is reset, e.g. due to an attempt to seek.reimar2007-01-071-0/+1
* in dvb_get_config() open the frontend in READ_ONLY mode for probing (worksaro...nicodvb2007-01-071-1/+1
* reindentednicodvb2007-01-061-16/+16
* init to 0 feparams before tuningnicodvb2007-01-061-0/+1
* removed useless reporting codenicodvb2007-01-061-55/+3
* moved actual tuning code from check_status() to tune_it()nicodvb2007-01-061-18/+12
* don't add pid 0 if it's already present in the listnicodvb2007-01-061-6/+5
* More free() that were forgotten in r21806 memleak fixrtogni2007-01-011-0/+3
* Memleak fix (implement sdpplin_free() and use it)rtogni2007-01-012-1/+28
* Fix invalid memory access if identifier is unknownrtogni2007-01-011-1/+1
* Fix potential buffer overflow in asm rules matching codertogni2006-12-313-3/+9
* reindentationnicodvb2006-12-301-13/+13
* Fix double free of *http_hdr at server error.iive2006-12-301-2/+2
* replace call to UDFFindFile() (that is not part of the public API) with DVDOp...nicodvb2006-12-231-6/+6
* fix compilation on the most delicious variant of unix (mingw) that lacks S_IR...nicodvb2006-12-211-2/+7
* reindented after yesterday's commitnicodvb2006-12-201-2/+2
* support for writing over smb sharesnicodvb2006-12-191-6/+23
* in WRITE mode open the output file with mode 0666; umask will filter itnicodvb2006-12-191-1/+1
* support functions for writing to streamsnicodvb2006-12-181-0/+28
* implemented STREAM_CTRL_GET_SIZEnicodvb2006-12-181-0/+17
* new STREAM_CTRL_GET_SIZE to get size of output streamnicodvb2006-12-181-0/+1
* in STREAM_WRITE mode open the stream with O_RDWR|O_CREAT, S_IRUSR|S_IWUSR and...nicodvb2006-12-181-3/+6
* added member and definitions for output streamsnicodvb2006-12-181-0/+3
* support for limiting dvd speed; patch by Tobias Diedrich (ranma tdiedrich se)nicodvb2006-12-171-0/+87
* simplified aid management in dvdnav_lang_from_aid(); patch by Joakim Pattenicodvb2006-12-151-7/+1
* Force lavf on flv streams. Closes bugzilla #354rtogni2006-12-151-0/+4
* implemented dvdnav_lang_from_aid() to retrieve audio languagenicodvb2006-12-142-0/+31
* added dvdnav_aid_from_lang() to support -alangnicodvb2006-12-142-0/+45
* Add missing buf.memory = V4L2_MEMORY_MMAP; initializations.reimar2006-12-121-0/+3
* Make sure closesocket is called.reimar2006-12-101-0/+10
* STREAM_UNSUPPORTED is -1, so use the former for return value in all places.reimar2006-12-101-4/+2
* Make sure stream->fd is set correct (esp. to -1 on error when fd is closed)reimar2006-12-101-1/+2
* added function to return the language of the specified subtitle id. Patch bynicodvb2006-12-102-0/+22
* ID_SUBTITLE_ID should show the -sid number, not the vobsub id also for dvd subs.reimar2006-12-101-1/+1
* Fix misplaced http_freereimar2006-12-091-1/+1
* Fix potential endless loop in http_streaming_start duereimar2006-12-091-0/+1
* Fix lots and lots of potential memory/fd leaks in http_streaming_startreimar2006-12-091-19/+28
* export spu palette; part of a patch by Otvos Attilanicodvb2006-12-092-0/+13
* Avoid memory and fd leaks in asf streaming open code.reimar2006-12-091-15/+15
* Forgotten closesocket on error, patch byreimar2006-12-091-1/+4
* Close fd on error.reimar2006-12-091-1/+2
* Hack around libavutil/bswap.h compilation problems due to always_inline undef...reimar2006-12-073-3/+3
* Simplify NEXT_LINE macro and put most of it in a separate function.reimar2006-12-061-16/+16
* remove useless and incorrect const-removing castreimar2006-12-061-1/+1
* Do not define _GNU_SOURCE, it is not necessary and causes a warning if it isreimar2006-12-061-2/+0
* Make sure invalid protocols are rejected instead of treatedreimar2006-12-051-1/+2
* Add full support for en-/disabling cddb supportreimar2006-12-041-3/+7
* remove headers included twiceaurel2006-12-031-2/+0
* use strchr() instead of index()aurel2006-12-031-1/+1
* doxygenized dvdnav_sid_from_lang() and dvdnav_number_of_subs()nicodvb2006-12-021-0/+11
* Move system headers before libavutil headers to work around build issues ondiego2006-12-021-3/+3
* Remove bswap.h, use libavutil/bswap.h instead.diego2006-11-293-3/+6
* cosmetical reformattingnicodvb2006-11-271-13/+14
* feed the content of NAV_PACKET to the demuxernicodvb2006-11-271-0/+3
* Add a config.mak variable for CDDB.diego2006-11-271-3/+1
* FFmpeg-style dependency declarationdiego2006-11-271-96/+51
* cosmetics: Merge SRCS together, alphabetical order, whitespace.diego2006-11-271-32/+16
* cosmetics:indentationdiego2006-11-271-37/+37
* Untangle dependencies that are handled by configure.diego2006-11-271-5/+5
* Remove unused LIBAV_INC variable.diego2006-11-271-1/+1
* Merge common parts of all Makefiles into one file included by all.diego2006-11-261-28/+4
* match exactly card number N specified, rather than the N-th actually usablenicodvb2006-11-261-3/+12
* keep nav highlight event in dvdnav priv structureben2006-11-252-12/+16
* Remove superfluous comment.diego2006-11-251-3/+0
* support for comma-separated language codes in -slangnicodvb2006-11-251-1/+6
* spurious () like in ({code;}) probably is not valid C, icc 9, definitelyreimar2006-11-251-2/+2
* better nav highlight handlingben2006-11-252-4/+13
* removed unused members and variablesnicodvb2006-11-252-19/+0
* COSMETICS: consistently reformatted after ben's messnicodvb2006-11-251-6/+4
* added code to identify subs language and count; needed for forthcoming suppor...nicodvb2006-11-252-0/+30
* support for dvdnav menu buttons overlay as simple alpha boxes (rework from Ot...ben2006-11-251-0/+48
* cosmeticsreimar2006-11-211-1/+1
* Also support absolute url redirection, e.g. http://www.youtube.com/v/buKaqRG2SFAreimar2006-11-211-1/+6
* Unify dep/depend targets.diego2006-11-201-3/+1
* new slave command: radio_step_freqvoroshil2006-11-192-0/+22
* riformatted after previous commitnicodvb2006-11-191-2/+2
* if in the list of pids appears at least one 8192 (while TS) remove all other ...nicodvb2006-11-191-1/+18
* Add *BSD BT848 radio supportvoroshil2006-11-182-1/+156
* Rename libdvdread to dvdread. We really only include only the dvdreaddiego2006-11-181-4/+4
* add public wrapper for get_frequencyvoroshil2006-11-172-0/+16
* Change verbosity level from MSGL_V to MSGL_INFO for "Current frequency is"voroshil2006-11-171-1/+1
* consistency fix: STREAM_CTRL_GET_TIME_LENGTH and STREAM_CTRL_GET_CURRENT_TIME...nicodvb2006-11-122-4/+3
* make fail STREAM_CTRLs related to seeking/fetching time/chapter when the cach...nicodvb2006-11-111-2/+9
* idenfify now shows the timings of chapters of the chosen pgcnicodvb2006-11-101-0/+26
* one more deuglificationnicodvb2006-11-091-1/+2
* COSMETICS: renamed dvdnav_priv to privnicodvb2006-11-091-56/+56
* Add missed 'break'.voroshil2006-11-091-0/+2
* Move non driver-specific block to non-driver specific procedure, to avoidvoroshil2006-11-091-17/+15
* changed ugly sizeof(*type_ptr) width sizeof(type)nicodvb2006-11-081-1/+1
* COSMETICS: reformatted this ugly mess in a consistent mannernicodvb2006-11-081-70/+71
* Support URL redirections that do not specify full URL.reimar2006-11-083-2/+21
* Adding ability to check allowed frequency range.voroshil2006-11-081-2/+17
* support for -dvdanglenicodvb2006-11-081-0/+3
* implemented STREAM_CTRL_GET_CURRENT_TIME and STREAM_CTRL_SEEK_TO_TIME (precis...nicodvb2006-11-072-0/+111
* added definitions of STREAM_CTRL_GET_CURRENT_TIME STREAM_CTRL_SEEK_TO_TIMEnicodvb2006-11-071-0/+2
* Replace enneccesery O_RDWR with O_RDONLYvoroshil2006-11-071-1/+1
* Restoring volume level of radio card on exit.voroshil2006-11-071-0/+3
* printf->mp_msgrtogni2006-11-051-13/+14
* Fix compilation: forgotten mp_msg.h includereimar2006-11-051-0/+1
* printf ->mp_msgrtogni2006-11-051-8/+8
* Do not use abort()rtogni2006-11-051-7/+7
* cosmetics: reformatted with only tabsnicodvb2006-11-041-8/+6
* use calloc() instead of malloc()nicodvb2006-11-041-1/+1
* nonsense removal: compare old and new frequency in order to skip tuningnicodvb2006-11-042-43/+3
* changed email addresshenry2006-11-042-2/+2
* Streamline and simplify internal vs external libdvdread handling.diego2006-11-034-9/+9
* libmpdvdkit2 --> libdvdread, it just contains libdvdread now.diego2006-11-031-4/+4
* More code shufflingreimar2006-11-011-26/+13
* cosmetics: move WIN32 read_toc code to allow for summarizing more commonreimar2006-11-011-22/+24
* Avoid code duplication for "last" toc entry.reimar2006-11-011-28/+7
* simplify/unify read_tocreimar2006-11-011-28/+28
* Factor out common code in stream_cddb read_toc function.reimar2006-11-011-35/+11
* Remove useless codereimar2006-11-011-2/+0
* printf -> mp_msgrtogni2006-10-301-7/+10
* Realrtsp authenticationrtogni2006-10-305-6/+58
* support for -chapter option (same semanthics as for dvd://)nicodvb2006-10-231-0/+16
* simplified code to handle titleset transition (removed useless assignment)nicodvb2006-10-231-2/+1
* spell fixnicodvb2006-10-231-1/+1
* don't play any other title other than N when N is specified (with dvdnav://N)nicodvb2006-10-232-0/+9
* bails out if cdparanoia can't read cd (avoid lockup)ben2006-10-131-0/+2
* slight overall verbosity reductiondiego2006-10-122-3/+3
* gcc 2.95 fixods152006-10-111-1/+1
* added OSD audio switching visualizationptt2006-10-112-0/+14
* Change occurrences of "(int)*(void **)arg" to "*(int *)arg".uau2006-10-101-17/+17
* Forgotten http_free on send error.reimar2006-10-081-0/+1
* Print current DVD title as ID_DVD_CURRENT_TITLE.corey2006-10-061-0/+1
* warn the user to disable the cache when playing dvdnav streamsnicodvb2006-10-041-0/+2
* removed ivtv driver dependancy in favor of native V4L2 MPEG API (requires Lin...ben2006-09-271-242/+264
* cosmetic renames because pvr support will soon be less ivtv driver dependantben2006-09-251-11/+11
* made file-static new_dvdnav_stream() and dvdnav_stream_read()nicodvb2006-09-201-2/+2
* removed definitions of no more used or file-static functionsnicodvb2006-09-201-12/+0
* introduced new MP_CMD_DVDNAV_MOUSECLICK command (bound to mouse0);nicodvb2006-09-192-0/+13
* removed dead codenicodvb2006-09-191-117/+0
* Іnitial button value is -1. Only (button>0) is a correct button selection.jonas2006-09-191-1/+1
* permit seeking to 0: there's no reason to prevent itnicodvb2006-09-181-6/+3
* in the previous commit I forgot to set s->end_pos=0nicodvb2006-09-181-0/+1
* at titleset change call update_title_len() to reset stream->end_posnicodvb2006-09-181-0/+4
* don't seek until dvdnav_get_position() returns something meaningfulnicodvb2006-09-181-1/+8
* Restore original copyright notice as found in xine and xine-mms where thisdiego2006-09-181-7/+27
* report mouse coordinates after movement to dvdnav; this permits to enable but...nicodvb2006-09-162-0/+15
* at start, when not playing a specific titleset, try to call the Title menu (a...nicodvb2006-09-151-1/+3
* Change demuxer for "application/octet-stream" http streams fromeugeni2006-09-151-1/+1
* in mp_dvdnav_handle_input() update current button only if the status of the p...nicodvb2006-09-151-1/+2
* dvdnav_stream_reset() should be called on dvdnav_priv->dvdnav not on dvdnav_p...nicodvb2006-09-151-1/+1
* removed code that propagated the slave command dvdnav_event that hasn't been ...nicodvb2006-09-151-12/+0
* when cmd == MP_CMD_DVDNAV_SELECT set reset=1 only if dvdnav_button_activate()...nicodvb2006-09-151-1/+1
* * remove extern definitions of functions in .c filesattila2006-09-122-2/+7
* ability to pass channel name (not only number) to radio_set_channelvoroshil2006-09-111-1/+16
* at start, reset dvdnav at the beginning of the stream after the first read (t...nicodvb2006-09-101-0/+1
* try to start from the root menu skipping all intros when playing dvdnav://-1;...nicodvb2006-09-101-1/+3
* permit to select previous dvdnav menu, in the order chapter->title->rootnicodvb2006-09-101-0/+15
* in mp_dvdnav_handle_input() assign the currently selected button, shown in th...nicodvb2006-09-092-2/+4
* added mp_dvdnav_handle_input to handle user's input (revived from the reposit...nicodvb2006-09-092-0/+41
* if no track number specified play the whole disc, or the menus can't be shown...nicodvb2006-09-091-1/+4
* detect dvdnav before mpdvdkit and dvdread; if dvdnav is set mplayer will use ...nicodvb2006-09-091-0/+5
* Add #include <limits.h>, fixes build on Solaris 8.diego2006-09-071-0/+1
* Remove stray and superflous #ifdef checks.diego2006-09-011-5/+0