Skip to content

Commit

Permalink
wave: remove the dlna stuffs from plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Leandro Dorileo committed Jan 29, 2014
1 parent 517acaa commit 35fd18f
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions src/plugins/wave/wave.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,32 +50,6 @@
#define DECL_STR(cname, str) \
static const struct lms_string_size cname = LMS_STATIC_STRING_SIZE(str)

DECL_STR(_dlna_lpcm, "LPCM");

DECL_STR(_dlna_mime_44_mono, "audio/L16;rate=44100;channels=1");
DECL_STR(_dlna_mime_44_stereo, "audio/L16;rate=44100;channels=2");
DECL_STR(_dlna_mime_48_mono, "audio/L16;rate=48000;channels=1");
DECL_STR(_dlna_mime_48_stereo, "audio/L16;rate=48000;channels=2");
#undef DECL_STR

static void
_fill_dlna_profile(struct lms_audio_info *info)
{
if (info->channels == 1 && info->sampling_rate == 44100) {
info->dlna_profile = _dlna_lpcm;
info->dlna_mime = _dlna_mime_44_mono;
} else if (info->channels == 2 && info->sampling_rate == 44100) {
info->dlna_profile = _dlna_lpcm;
info->dlna_mime = _dlna_mime_44_stereo;
} else if (info->channels == 1 && info->sampling_rate == 48000) {
info->dlna_profile = _dlna_lpcm;
info->dlna_mime = _dlna_mime_48_mono;
} else if (info->channels == 2 && info->sampling_rate == 48000) {
info->dlna_profile = _dlna_lpcm;
info->dlna_mime = _dlna_mime_48_stereo;
}
}

static const char _name[] = "wave";
static const struct lms_string_size _exts[] = {
LMS_STATIC_STRING_SIZE(".wav"),
Expand Down Expand Up @@ -260,8 +234,6 @@ _parse(struct plugin *plugin, struct lms_context *ctxt,

info.id = finfo->id;

_fill_dlna_profile(&info);

r = lms_db_audio_add(plugin->audio_db, &info);

done:
Expand Down

0 comments on commit 35fd18f

Please sign in to comment.