Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-12-15 | test/*: use fprintf(stderr,...) and Log() instead of g_printerr() | Max Kellermann | 1 | -21/+16 | |
Avoid GLib. | |||||
2013-12-05 | test/run_encoder: destruct the Encoder before exiting | Max Kellermann | 1 | -0/+3 | |
2013-09-05 | conf.h: remove obsolete header | Max Kellermann | 1 | -1/+1 | |
Use only ConfigData.hxx in plugin sources to reduce header dependencies. | |||||
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -21/+12 | |
Replaces GLib's GError. | |||||
2013-08-04 | *: use gcc.h macros instead of GLib | Max Kellermann | 1 | -1/+1 | |
2013-08-04 | EncoderPlugin: pass config_param reference | Max Kellermann | 1 | -1/+1 | |
2013-08-03 | audio_format: convert to C++ | Max Kellermann | 1 | -6/+4 | |
2013-07-30 | encoder_api: convert to C++ | Max Kellermann | 1 | -10/+8 | |
2013-04-17 | encoder_list: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-30 | ConfigData: move functions into the class | Max Kellermann | 1 | -1/+1 | |
2013-01-30 | ConfigData: add constructors/destructors | Max Kellermann | 1 | -4/+3 | |
2013-01-30 | audio_{parser,config}: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-30 | test/run_encoder, ...: convert to C++ | Max Kellermann | 1 | -2/+2 | |
2012-10-02 | output/recorder, test/*: invoke encoder_read() after _open() | Max Kellermann | 1 | -0/+2 | |
Make sure the file header gets written at the beginning, before _write() gets called. | |||||
2012-10-02 | test/run_encoder: fix encoder_open() call | Max Kellermann | 1 | -2/+1 | |
2012-04-05 | encoder/vorbis: generate end-of-stream packet when playback ends | Max Kellermann | 1 | -1/+1 | |
Add the encoder_plugin method end(). This is important for the recorder plugin. | |||||
2012-03-19 | event_pipe, test: explicitly ignore write() return value | Max Kellermann | 1 | -2/+3 | |
Some compilers are very picky, but we really aren't interested in the return value. | |||||
2012-03-19 | event_pipe, test: explicitly ignore write() return value | Max Kellermann | 1 | -2/+3 | |
Some compilers are very picky, but we really aren't interested in the return value. | |||||
2011-09-09 | conf: move duplicate check to _read_name_value() | Max Kellermann | 1 | -1/+1 | |
config_add_block_param() cannot fail, which makes it easier to use. | |||||
2011-01-29 | copyright year 2011 | Max Kellermann | 1 | -1/+1 | |
2010-05-20 | test: enable binary mode on stdin/stdout | Max Kellermann | 1 | -0/+1 | |
Declaring the global variable _CRT_fmode is a documented hack. What an ugly platform! | |||||
2009-12-31 | Update copyright notices. | Avuton Olrich | 1 | -1/+1 | |
2009-12-02 | audio_format: changed "bits" to "enum sample_format" | Max Kellermann | 1 | -1/+1 | |
This patch prepares support for floating point samples (and probably other formats). It changes the meaning of the "bits" attribute from a bit count to a symbolic value. | |||||
2009-11-12 | include config.h in all sources | Max Kellermann | 1 | -0/+1 | |
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. | |||||
2009-10-21 | audio_format: wildcards allowed in audio_format configuration | Max Kellermann | 1 | -1/+2 | |
An asterisk means that this attribute should not be enforced, and stays whatever it used to be. This way, some configuration values work like masks. | |||||
2009-09-24 | conf: handle fatal errors with GError | Max Kellermann | 1 | -1/+1 | |
Don't call g_error(), which will abort the process and dump core. This patch does not affect all the config_get_X() functions. These need some more refactoring. | |||||
2009-07-19 | Add audio_format_init() function | David Woodhouse | 1 | -5/+3 | |
It makes no difference right now, but we're about to add an endianness flag and will want to make sure it's correctly initialised every time. | |||||
2009-06-03 | conf: eliminated CamelCase | Max Kellermann | 1 | -2/+2 | |
Renamed all remaining CamelCase functions. | |||||
2009-05-05 | test/run_encoder: flush the encoder before exiting | Max Kellermann | 1 | -5/+21 | |
2009-03-13 | all: Update copyright header. | Avuton Olrich | 1 | -3/+4 | |
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. | |||||
2009-02-25 | test: added encoder test program | Max Kellermann | 1 | -0/+114 | |
Added a command line program which runs an encoder plugin. |