aboutsummaryrefslogtreecommitdiff
path: root/src/input/mms_input_plugin.c
Commit message (Collapse)AuthorAge
* input/file,mms: convert to C++Max Kellermann2013-01-21
|
* input_stream: non-blocking I/OMax Kellermann2011-09-16
| | | | | | | | | 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.
* input_stream: move input_stream_init(), _deinit() to _internal.cMax Kellermann2011-09-14
|
* copyright year 2011Max Kellermann2011-01-29
|
* Merge release 0.15.10 from branch 'v0.15.x'Max Kellermann2010-05-30
|\ | | | | | | | | | | | | Conflicts: NEWS configure.ac src/input/mms_input_plugin.c
| * input/mms: initialize the "eof" attributeMax Kellermann2010-05-18
| |
| * input/mms: fix memory leak in error handlerMax Kellermann2010-05-18
| |
* | input/mms: removed empty method buffer()Max Kellermann2010-05-18
| | | | | | | | | | input_stream_buffer() has a check for "buffer==NULL", so we don't need an explicit empty implementation.
* | input_stream: added attribute "uri"Max Kellermann2010-01-18
| |
* | input_stream: added function input_stream_deinit()Max Kellermann2010-01-18
| | | | | | | | All close() implementations must call this method.
* | input_stream: return allocated input_stream objectsMax Kellermann2010-01-01
| | | | | | | | | | | | | | | | Major API redesign: don't let the caller allocate the input_stream object. Let each input plugin allocate its own (derived/extended) input_stream pointer. The "data" attribute can now be removed, and all input plugins simply cast the input_stream pointer to their own structure (with an "struct input_stream base" as the first attribute).
* | Update copyright notices.Avuton Olrich2009-12-31
| |
* | input_stream: return errors with GErrorMax Kellermann2009-12-15
| |
* | include config.h in all sourcesMax Kellermann2009-11-12
| | | | | | | | | | | | After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
* | input_stream: use "goffset" instead of "off_t"Max Kellermann2009-10-11
|/ | | | | | | | | | | | The "off_t" type may change when you enable or disable large file support on 32 bit platforms. This caused severe ABI problems within MPD when we enabled LFS for the first time: two sources included config.h and sys/types.h in different order, and had different off_t sizes - leading to memory corruption because of ABI incompatibility. This patch attempts to get rid of all public "off_t" uses: it removes "off_t" from the input_stream ABI/API, and switches to GLib's 64 bit "goffset" type. This may hurt 32 bit embedded platforms a tiny bit, but that's not even measurable.
* input/mms: fix G_LOG_DOMAIN valueSerge Ziryukin2009-09-20
|
* all: Update copyright header.Avuton Olrich2009-03-13
| | | | | | | | This updates the copyright header to all be the same, which is pretty much an update of where to mail request for a copy of the GPL and the years of the MPD project. This also puts all committers under 'The Music Player Project' umbrella. These entries should go individually in the AUTHORS file, for consistancy.
* input: pass config_param to input_plugin.init()Max Kellermann2009-03-02
| | | | | Allow input plugins to configure with an "input" block in mpd.conf. Also allow the user to disable a plugin completely.
* input: moved plugins to ./src/input/Max Kellermann2009-03-02
Create a sub directory for input plugins.