1
0
Fork 0
forked from len0rd/rockbox

Fix yellow - (Value in an enumeration not handled in a switch).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22032 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Mohamed Tarek 2009-07-25 15:54:05 +00:00
parent b8cccb5ae1
commit fe1568a11c

View file

@ -401,8 +401,12 @@ bool get_rm_metadata(int fd, struct mp3entry* id3)
switch(rmctx->codec_type)
{
case cook:
/* Already set, do nothing */
break;
case aac:
id3->codectype = AFMT_RAAC;
id3->codectype = AFMT_RAAC;
break;
}
id3->bitrate = rmctx->bit_rate / 1000;