log stream/stream.c @ 33973:082ab13a41ab

age author description
2011-08-15 reimar Convert stream_read_line function into more generic stream_read_until function.
2011-07-04 reimar Reindent, add empty lines.
2011-07-04 reimar Improve checks for when to try reconnecting to be more thorough and readable.
2011-07-04 reimar Pass streaming_ctrl eof on.
2011-05-11 ib Make stream messages translatable.
2011-03-26 reimar Add ugly hack to compensate DVDNAV's ugly hacks and fix seeking.
2011-02-27 reimar Improve stream reset on read error, should now fix bug #1841 in more
2011-02-23 reimar 100l, fix incorrect len when retrying read.
2011-02-22 reimar When reading from a stream fails, try one more time after a reset.
2011-02-10 ranma Fix stream_write_buffer to make sure all requested bytes are written
2010-11-07 diego Remove some useless NULL pointer checks before invoking free() on the pointer.
2010-10-27 reimar Add internal read and seek function to avoid a useless memcpy when using
2010-10-21 diego Implement a basic capture feature, available through -capture.
2010-09-13 diego build system: Merge all FFmpeg library checks into a single FFmpeg check.
2010-08-21 reimar Make sure we return an "empty" line on eof, to make sure we get
2010-08-03 reimar Add support for bd:// streams as a test for a part of the AACS algorithm.
2010-07-17 diego Rename network build system variable and command line option to networking.
2010-07-10 reimar Fix compilation broken due to GET_UTF8 being undefined.
2010-07-05 ben Support for unencrypted Blu-ray playback through libbluray.
2010-06-27 reimar Add missing include for usec_sleep.
2010-05-28 reimar stream_check_interrupt should sleep even if no callback is set.
2010-05-26 reimar Retry reading even if we hit eof before.
2010-04-03 diego Remove commented-out #include of a non-existing file.
2010-02-28 reimar Extend stream_read_line to support reading lines from UTF-16 encoded files
2010-02-28 reimar Move stream_read_line implementation from stream.h to stream.c,
2010-02-25 reimar Mark stream open filename parameter as const, the filename string is not
2010-02-20 reimar Do not discard stream buffer on eof, instead reuse it to slightly improve
2010-02-16 diego stream: Mark functions not used outside of their files as static.
2010-01-30 diego Add license header to all files missing it in the stream subdirectory.
2010-01-23 reimar Call cache-uninit unconditionally, it should always be safe to call.
2009-11-22 reimar Finally rename the STREAM_SEEK define to MP_STREAM_SEEK, there are just too many
2009-11-17 reimar Merge malloc+memset -> calloc
2009-11-17 reimar Enable the read-based forward seek fallback also when CONFIG_NETWORK is
2009-11-17 reimar Use fill_buffer if available also for STREAMTYPE_STREAM
2009-11-17 reimar Add preliminary support for streaming via FFmpeg's URProtocol functions.
2009-11-09 reimar The code for the non-networking case is the same whether networking
2009-11-09 reimar Factor out triplicated break statement.
2009-05-13 diego whitespace cosmetics: Remove all trailing whitespace.
2009-02-01 diego Convert HAVE_WINSOCK2_H into a 0/1 definition.
2008-09-01 diego Move '#define closesocket close' preprocessor directive to a common place
2008-08-31 diego Revert moving closesocket definition and network headers to network.h.
2008-08-29 diego Move duplicated '#define closesocket close' into network.h along with
2008-08-29 diego Rename HAVE_WINSOCK preprocessor condition to HAVE_WINSOCK_H.
2008-08-07 diego Give a CONFIG_ prefix to preprocessor directives that lacked one and
2008-08-07 diego Rename a bunch of miscellaneous preprocessor directives.
2008-08-03 diego Change a bunch of video/audio-output-specific preprocessor directives from
2008-07-30 diego Start unifying names of internal preprocessor directives.
2008-07-05 diego Surround stream cache specific code by an appropriate #ifdef; fixes linking
2008-05-24 reimar Add basic support for stream controls with cache enabled.
2008-04-09 albeu Remove the need for code using stream to export an mp_input_check_interrupt()
2008-02-20 diego Remove pointless #ifdefs around extern declarations.
2008-01-09 uau Remove unnecessary <signal.h> includes
2007-12-19 ulion Protocol name should be case insensitive.
2007-12-02 reimar Mark all stream_info_t as const
2007-12-02 voroshil When IFO file is opened (detected by extension), set dvd-device to IFO file's
2007-12-02 reimar Make auto_open_streams array itself const
2007-12-01 reimar auto_open_streams should have const type, fix also the places where it is used
2007-11-30 ben this local variable can be static
2007-11-26 ulion Support stream redirection from http to mms, fix bug #927.
2007-11-08 cehoyos Fix possible null-pointer-dereference in stream_fill_buffer().