hxsym_mimetypes.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:2k
源码类别:

Symbian

开发平台:

C/C++

  1. /*============================================================================*
  2.  *
  3.  * (c) 1995-2002 RealNetworks, Inc. Patents pending. All rights reserved.
  4.  *
  5.  * 
  6.  * superset of mimetypes that may be handled by helix symbian player variants
  7.  *
  8.  * used by recognizer and file view filtering logic
  9.  *
  10.  *============================================================================*/
  11.  
  12. #ifndef _hxsym_mimetypes_h_
  13. #define _hxsym_mimetypes_h_
  14. //
  15. // these are mimetypes our recognizer might hand out
  16. //
  17. const TText8* const HXSYM_MIMETYPE_RM       = _S8("audio/x-pn-realaudio");
  18. const TText8* const HXSYM_MIMETYPE_MP3      = _S8("audio/mp3");
  19. const TText8* const HXSYM_MIMETYPE_AMR      = _S8("audio/amr"); // note: lower case 'amr' required to work around Series60 phone bug
  20. const TText8* const HXSYM_MIMETYPE_3GPAUDIO = _S8("audio/3gpp");
  21. const TText8* const HXSYM_MIMETYPE_3GPVIDEO = _S8("video/3gpp");
  22. const TText8* const HXSYM_MIMETYPE_MP4AUDIO = _S8("audio/mp4");
  23. const TText8* const HXSYM_MIMETYPE_MP4VIDEO = _S8("video/mp4");
  24. const TText8* const HXSYM_MIMETYPE_RAM      = _S8("application/ram");
  25. const TText8* const HXSYM_MIMETYPE_SDP      = _S8("application/sdp");
  26. const TText8* const HXSYM_MIMETYPE_SMIL     = _S8("application/smil");
  27. //
  28. // corny names - we may associate with these in our AIF in case other
  29. // recognizers recognize a supported filetype with a higher certainty
  30. // than we do and for some reason hand out a different mimetype than
  31. // what we otherwise would
  32. //
  33. // these can be re-considered for some size savings
  34. //
  35. const TText8* const HXSYM_MIMETYPE_RM_ALT1          = _S8("application/x-pn-realmedia");
  36. const TText8* const HXSYM_MIMETYPE_RM_ALT2          = _S8("application/vnd.rn-realmedia");
  37. const TText8* const HXSYM_MIMETYPE_RM_ALT3          = _S8("audio/vnd.rn-realaudio");
  38. const TText8* const HXSYM_MIMETYPE_RM_ALT4          = _S8("video/vnd.rn-realvideo");
  39. const TText8* const HXSYM_MIMETYPE_MP4AUDIO_ALT1    = _S8("audio/mp4a-latm");
  40. const TText8* const HXSYM_MIMETYPE_3GPPAUDIO_ALT1   = _S8("video/h263-1998");
  41. const TText8* const HXSYM_MIMETYPE_3GPPVIDEO_ALT1   = _S8("audio/h263-2000");
  42. const TText8* const HXSYM_MIMETYPE_SMIL1            = _S8("application/vnd.rn-rmadriver");
  43. const TText8* const HXSYM_MIMETYPE_SMIL1_ALT1       = _S8("application/rma-driver");
  44. #endif // _hxsym_mimetypes_h_