Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-12-01 | input/cdio_paranoia: use CopyString() instead of g_strlcpy() | Max Kellermann | 1 | -2/+1 | |
2014-08-19 | InputStream: make offset_type unsigned | Max Kellermann | 1 | -1/+1 | |
2014-05-22 | InputStream: make Seek() always absolute | Max Kellermann | 1 | -15/+2 | |
Remove the "whence" parameter that is not actually necessary, and only complicates the InputStream implementations. | |||||
2014-05-12 | input/cdio: convert to class | Max Kellermann | 1 | -1/+2 | |
2014-05-12 | input/cdio: move initialization code to constructor | Max Kellermann | 1 | -51/+50 | |
Make attributes const, don't allow partial initialization. Instantiate the CdioParanoiaInputStream object at the end of input_cdio_open(). | |||||
2014-05-12 | input/cdio: handle cdio_open() failure | Max Kellermann | 1 | -0/+5 | |
2014-05-12 | input/cdio: initialize lsn_relofs in constructor | Max Kellermann | 1 | -2/+1 | |
2014-05-12 | input/cdio: initialize attribute "buffer_lsn" | Max Kellermann | 1 | -1/+2 | |
2014-05-12 | input/cdio: remove unused attribute "trackno" | Max Kellermann | 1 | -11/+6 | |
2014-05-11 | InputStream: remove attribute "plugin" | Max Kellermann | 1 | -1/+1 | |
2014-05-11 | InputStream: make various methods abstract | Max Kellermann | 1 | -40/+32 | |
Replace InputPlugin attributes. | |||||
2014-05-11 | InputStream: add virtual destructor | Max Kellermann | 1 | -9/+0 | |
Replaces the method Close(). | |||||
2014-05-11 | input/plugins: make InputStream the base class | Max Kellermann | 1 | -19/+17 | |
Prepare for adding virtual methods. | |||||
2014-05-11 | InputStream: convert to class | Max Kellermann | 1 | -3/+3 | |
2014-03-02 | InputPlugin: allow init() to soft-fail | Max Kellermann | 1 | -3/+3 | |
Add enum InputResult which is a tri-state. Input plugins may now fail and just become unavailable. | |||||
2014-01-24 | Input*: move to input/ | Max Kellermann | 1 | -2/+2 | |
2014-01-24 | Config*: move to config/ | Max Kellermann | 1 | -2/+2 | |
2014-01-13 | copyright year 2014 | Max Kellermann | 1 | -1/+1 | |
2013-12-17 | input/cdio: fix typo in #include path | Max Kellermann | 1 | -1/+1 | |
Broken by commit 3b0fea5f | |||||
2013-11-28 | Util/StringUtil: add StringStartsWith() | Max Kellermann | 1 | -1/+2 | |
Replaces GLib's g_str_has_prefix(). | |||||
2013-11-27 | input/cdio_paranoia: support libcdio-paranoia 0.90 | Gaetan Bisson | 1 | -0/+5 | |
2013-11-07 | input/cdio_paranoia: add setting "default_byte_order" | Max Kellermann | 1 | -2/+26 | |
Allows big-endian users to configure the fallback byte order to little-endian. Without this setting, MPD assumes native byte order if the CD drive can't decide. | |||||
2013-10-23 | input_stream: rename struct to InputStream | Max Kellermann | 1 | -6/+6 | |
2013-10-23 | InputInternal: remove obsolete library | Max Kellermann | 1 | -1/+0 | |
2013-10-19 | input/cdio: use class AllocatedPath | Max Kellermann | 1 | -10/+9 | |
2013-10-17 | InputStream: use int64_t instead of goffset | Max Kellermann | 1 | -1/+1 | |
Decouple some more from GLib. | |||||
2013-10-17 | input_plugin: rename struct to "InputPlugin" | Max Kellermann | 1 | -1/+1 | |
2013-10-16 | system/ByteOrder: new library for byte ordering / endianess | Max Kellermann | 1 | -2/+3 | |
Replacing GLib macros. | |||||
2013-10-15 | input/*: don't allocate attribute "mime" | Max Kellermann | 1 | -3/+3 | |
This was a memory leak, because "mime" was a std::string which created another copy and discarded the allocated buffer. | |||||
2013-10-02 | Log: new logging library API | Max Kellermann | 1 | -4/+9 | |
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend. | |||||
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -25/+19 | |
Replaces GLib's GError. | |||||
2013-01-29 | refcount: convert to C++ | Max Kellermann | 1 | -1/+0 | |
2013-01-28 | InputStream: add constructor/destructor | Max Kellermann | 1 | -5/+2 | |
Eliminate input_stream_init() and input_stream_deinit(). | |||||
2013-01-27 | DecoderControl, InputStream: use Mutex/Cond instead of GMutex/GCond | Max Kellermann | 1 | -2/+2 | |
2013-01-26 | input_stream: forward-declare the struct | Max Kellermann | 1 | -0/+1 | |
Hide the definition from C code, to prepare the transition to C++. | |||||
2013-01-25 | input_{internal,plugin}: convert to C++ | Max Kellermann | 1 | -2/+2 | |
2013-01-21 | input/cdio_paranoia: convert to C++ | Max Kellermann | 1 | -49/+60 | |
2012-02-15 | input/cdio_paranoia: whitespace-fix a comment | Jonathan Neuschäfer | 1 | -2/+2 | |
2011-10-10 | input/cdio_paranoia: pass byte order swapping to the PCM "decoder" | Max Kellermann | 1 | -32/+11 | |
Send another "magic" MIME type when the byte order must be reversed. This also fixes byte order issues when big-endian was involved (input data or host byte order) - that was completely broken. | |||||
2011-09-16 | input_stream: non-blocking I/O | Max Kellermann | 1 | -2/+5 | |
Add GMutex, GCond attributes which will be used by callers to conditionally wait on the stream. Remove the (now-useless) plugin method buffer(), wait on GCond instead. Lock the input_stream before each method call. Do the same with the playlist plugins. | |||||
2011-09-14 | input_stream: move input_stream_init(), _deinit() to _internal.c | Max Kellermann | 1 | -0/+1 | |
2011-01-29 | copyright year 2011 | Max Kellermann | 1 | -1/+1 | |
2011-01-08 | input/cdio_paranoia: add module name | Max Kellermann | 1 | -0/+1 | |
Seems like we forgot to give this module a name... this can crash MPD on startup. | |||||
2010-12-22 | input/cdda: rename plugin to "cdio_paranoia" | Max Kellermann | 1 | -39/+39 | |
2010-12-22 | input/cdda: support reading the whole disc | Max Kellermann | 1 | -10/+8 | |
2010-12-22 | input/cdda: remove unused function input_cdda_archive_extract_trackno() | Max Kellermann | 1 | -24/+0 | |
2010-12-22 | input/cdda: import missing pcm16_to_wave() from the wave encoder | Max Kellermann | 1 | -0/+11 | |
2010-12-22 | input/cdda: implement parse_cdda_uri() | Max Kellermann | 1 | -10/+59 | |
Was missing. | |||||
2010-12-22 | input/cdda: call input_cdda_close() with an input_stream pointer | Max Kellermann | 1 | -5/+5 | |
Another build fix. | |||||
2010-12-22 | input/cdda: move code to cdda_detect_drive() | Max Kellermann | 1 | -7/+18 | |