Project Home
Project Home
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - Definition of MME StorageType : (2 Items)
   
Definition of MME StorageType  
Hi all,

is there a reason why the range within this definition is not continuous (see below)? 

Thanks,
Sebastian

/* Define storage types */
#define MME_STORAGETYPE_UNKNOWN    (0)
#define MME_STORAGETYPE_AUDIOCD    (1)
#define MME_STORAGETYPE_FS         (2)
#define MME_STORAGETYPE_DEVB       MME_STORAGETYPE_FS
#define MME_STORAGETYPE_DVDAUDIO   (3)
#define MME_STORAGETYPE_VCD        (4)
#define MME_STORAGETYPE_SVCD       (5)
#define MME_STORAGETYPE_DVDVIDEO   (6)
#define MME_STORAGETYPE_IPOD       (8)
#define MME_STORAGETYPE_KODAKCD    (9)
#define MME_STORAGETYPE_PICTURECD  (10)
#define MME_STORAGETYPE_A2DP       (12)
#define MME_STORAGETYPE_RESERVED0  (13)	/* UPNP placeholder, moved to mediafs */
#define MME_STORAGETYPE_SMB        MME_STORAGETYPE_FS
#define MME_STORAGETYPE_FTP        (15)
#define MME_STORAGETYPE_HTTP       (16)
#define MME_STORAGETYPE_NAVIGATION (17)
#define MME_STORAGETYPE_UPGRADE    (18)
#define MME_STORAGETYPE_PLAYSFORSURE   (20)
#define MME_STORAGETYPE_UPNP           (21)
#define MME_STORAGETYPE_INTERNETSTREAM (22)
#define MME_STORAGETYPE_SND_INPUT      (23)
Re: Definition of MME StorageType  
On Tue, 9 Feb 2010, Sebastian Kiesel wrote:

> Hi all,
>
> is there a reason why the range within this definition is not continuous (see below)?
>
> Thanks,
> Sebastian
>
> /* Define storage types */
> #define MME_STORAGETYPE_UNKNOWN    (0)
> #define MME_STORAGETYPE_AUDIOCD    (1)
> #define MME_STORAGETYPE_FS         (2)
> #define MME_STORAGETYPE_DEVB       MME_STORAGETYPE_FS
> #define MME_STORAGETYPE_DVDAUDIO   (3)
> #define MME_STORAGETYPE_VCD        (4)
> #define MME_STORAGETYPE_SVCD       (5)
> #define MME_STORAGETYPE_DVDVIDEO   (6)
> #define MME_STORAGETYPE_IPOD       (8)
> #define MME_STORAGETYPE_KODAKCD    (9)
> #define MME_STORAGETYPE_PICTURECD  (10)
> #define MME_STORAGETYPE_A2DP       (12)
> #define MME_STORAGETYPE_RESERVED0  (13)	/* UPNP placeholder, moved to mediafs */
> #define MME_STORAGETYPE_SMB        MME_STORAGETYPE_FS
> #define MME_STORAGETYPE_FTP        (15)
> #define MME_STORAGETYPE_HTTP       (16)
> #define MME_STORAGETYPE_NAVIGATION (17)
> #define MME_STORAGETYPE_UPGRADE    (18)
> #define MME_STORAGETYPE_PLAYSFORSURE   (20)
> #define MME_STORAGETYPE_UPNP           (21)
> #define MME_STORAGETYPE_INTERNETSTREAM (22)
> #define MME_STORAGETYPE_SND_INPUT      (23)

Removal of unclear place holders (7 was mediafs, 19 was mediafs_2wire) that
didn't map to any one single type.

I can't find reference to the missing type mapping to 11.

Where at all possible older types (like SMB) were mapped to a new version 
if they were removed.

Peter