aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/ffmpeg_decoder_plugin.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* input/ffmpeg: new input plugin using libavformat's "avio" libraryMax Kellermann2010-05-181-0/+6
|
* decoder/ffmpeg: fix crash on startup in mpd_ffmpeg_log_callback()Charles Kerr2010-04-111-4/+9
| | | | | | | | | What's happening is the `ptr' argument to that function is NULL for me every time. `ptr' is unconditionally dereferenced to generate a log message, and this is where mpd crashes. Attached is a simple patch that tests for NULL and omits the log. With this patch the crash disappeared and mpd went back to working well.
* decoder/ffmpeg: print item name in log callbackMax Kellermann2010-03-281-1/+5
|
* decoder/ffmpeg: fix indentationMax Kellermann2010-03-071-6/+6
|
* decoder/ffmpeg: implement the libavutil log callbackMax Kellermann2010-02-271-0/+31
| | | | Pass everything to the GLib logging library. No direct stderr access.
* decoder/ffmpeg: don't close the AVFormatContext after open failureMax Kellermann2010-02-271-1/+0
| | | | The pointer is invalid if av_open_input_file() fails.
* ffmpeg: read more metadata.Anton Khirnov2010-02-021-1/+12
|
* decoder/ffmpeg: call decoder_timestamp() once per packetMax Kellermann2010-01-181-5/+5
|
* decoder/ffmpeg: merged ffmpeg_helper() into ffmpeg_decode()Max Kellermann2010-01-181-116/+67
|
* decoder/ffmpeg: optimized the stream_tag() methodMax Kellermann2010-01-181-25/+27
| | | | Don't use the function ffmpeg_helper(), don't initialize the codec.
* decoder/ffmpeg: free AVFormatContext on errorMax Kellermann2010-01-181-0/+4
| | | | Fix a memory leak in some code paths.
* decoder_api: removed function decoder_get_uri()Max Kellermann2010-01-181-6/+5
| | | | Use input_stream.uri.
* Merge release 0.15.8 from branch 'v0.15.xMax Kellermann2010-01-181-4/+34
| | | | | | | | | Conflicts: Makefile.am NEWS configure.ac src/decoder/ffmpeg_decoder_plugin.c src/decoder_thread.c
* renamed decoder plugin sourcesMax Kellermann2010-01-041-0/+552
Make it X_decoder_plugin.c.