Fill in type & codectype for .url/.pls

This commit is contained in:
Julien BLACHE 2009-04-05 13:51:57 +02:00
parent c2ffed5e2b
commit e318858d44
1 changed files with 4 additions and 0 deletions

View File

@ -106,6 +106,10 @@ int scan_get_urlinfo(char *filename, MP3FILE *pmp3) {
DPRINTF(E_DBG,L_SCAN," Bitrate: %d\n",pmp3->bitrate); DPRINTF(E_DBG,L_SCAN," Bitrate: %d\n",pmp3->bitrate);
DPRINTF(E_DBG,L_SCAN," URL: %s\n",pmp3->url); DPRINTF(E_DBG,L_SCAN," URL: %s\n",pmp3->url);
pmp3->type = strdup("pls");
/* codectype = NULL */
pmp3->description = strdup("Playlist URL");
return TRUE; return TRUE;
} }