| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
The new method pair() receives an arbitrary name/value pair. Support
for this is being added to a few decoder plugins.
|
|
|
|
| |
Fixes build regression.
|
|
|
|
|
| |
The struct is smaller because it is sparse. Its traversal is also
more efficient.
|
|\
| |
| |
| |
| |
| | |
Conflicts:
NEWS
configure.ac
|
| |
| |
| |
| |
| | |
This workaround leads to an infinite loop instead of an assertion
failure, but hey, now it's libmp4ff's fault.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
|/ |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Conflicts:
NEWS
configure.ac
src/decoder_control.c
src/decoder_control.h
src/input/rewind_input_plugin.c
src/output_control.c
src/output_thread.c
src/player_thread.c
|
|
|
|
|
|
|
|
|
|
|
| |
According to the mantis bug report 2847, there are several possible
variations of the "album artist" tag:
- "album artist"
- "album_artist"
- "albumartist"
This patch adds support for the latter two.
|
|
|
|
|
| |
We already supported "albumartist", but it seems some folks also use
"album artist" (with a space).
|
|
|
|
|
| |
Allocate the "tag" object after the file has been checked. That
removes one tag_free() call in an error handler.
|
| |
|
|
|
|
| |
Allocate only one item on the stack.
|
| |
|
|
|
|
| |
Reuse the function tag_name_parse_i().
|
| |
|
|
|
|
|
| |
I'm not sure if mapping "band" to TAG_PERFORMER is correct, but it
might be better than nothing.
|
|
|
|
| |
Convert if/else/else/... to a loop.
|
|
|
|
|
| |
The underlying library is named "libmp4ff". To reduce confusion,
rename the plugin to a more specific name.
|
|
Make it X_decoder_plugin.c.
|