diff options
author | Max Kellermann <max@duempel.org> | 2010-05-18 20:48:52 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-05-18 21:20:31 +0200 |
commit | fa2ff849c5fbcdc20b70379af300f2c1293ed5ea (patch) | |
tree | 1bc204de5d9a0c0653a9b761aff0274f85d29a66 /src/decoder/ffmpeg_decoder_plugin.c | |
parent | 6b2b91ff01050ca79256026e5f92ba6da93fc5cf (diff) | |
download | mpd-fa2ff849c5fbcdc20b70379af300f2c1293ed5ea.tar.gz mpd-fa2ff849c5fbcdc20b70379af300f2c1293ed5ea.tar.xz mpd-fa2ff849c5fbcdc20b70379af300f2c1293ed5ea.zip |
input/ffmpeg: new input plugin using libavformat's "avio" library
Diffstat (limited to 'src/decoder/ffmpeg_decoder_plugin.c')
-rw-r--r-- | src/decoder/ffmpeg_decoder_plugin.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/decoder/ffmpeg_decoder_plugin.c b/src/decoder/ffmpeg_decoder_plugin.c index 4f956f555..d2ea28681 100644 --- a/src/decoder/ffmpeg_decoder_plugin.c +++ b/src/decoder/ffmpeg_decoder_plugin.c @@ -575,6 +575,12 @@ static const char *const ffmpeg_mime_types[] = { "video/x-vid", "video/x-wmv", "video/x-xvid", + + /* special value for the "ffmpeg" input plugin: all streams by + the "ffmpeg" input plugin shall be decoded by this + plugin */ + "audio/x-mpd-ffmpeg", + NULL }; |