Skip to content

Commit

Permalink
ffaudio: Register for application/ogg MIME type.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlindgren90 committed Jan 12, 2014
1 parent 7859a84 commit 7b8ef6f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/ffaudio/ffaudio-core.c
Expand Up @@ -622,17 +622,20 @@ static const gchar *ffaudio_fmts[] = {
NULL
};

static const char * const ffaudio_mimes[] = {"application/ogg", NULL};

AUD_INPUT_PLUGIN
(
.name = N_("FFmpeg Plugin"),
.domain = PACKAGE,
.about_text = ffaudio_about,
.init = ffaudio_init,
.cleanup = ffaudio_cleanup,
.extensions = ffaudio_fmts,
.mimes = ffaudio_mimes,
.is_our_file_from_vfs = ffaudio_probe,
.probe_for_tuple = ffaudio_probe_for_tuple,
.play = ffaudio_play,
.extensions = ffaudio_fmts,
.update_song_tuple = ffaudio_write_tag,

/* lowest priority fallback */
Expand Down

0 comments on commit 7b8ef6f

Please sign in to comment.