Advertisement
Guest User

samsung mkv

a guest
Aug 24th, 2013
452
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 3.30 KB | None | 0 0
  1. --- xbmc/utils/Mime.cpp.original        2013-08-24 23:49:27.821473202 +0300
  2. +++ xbmc/utils/Mime.cpp 2013-08-24 23:49:47.598258932 +0300
  3. @@ -235,7 +235,7 @@
  4.    mimeTypes.insert(pair<string, string>("mjf",       "audio/x-vnd.audioexplosion.mjuicemediafile"));
  5.    mimeTypes.insert(pair<string, string>("mjpg",      "video/x-motion-jpeg"));
  6.    mimeTypes.insert(pair<string, string>("mka",       "audio/x-matroska"));
  7. -  mimeTypes.insert(pair<string, string>("mkv",       "video/x-matroska"));
  8. +  mimeTypes.insert(pair<string, string>("mkv",       "video/x-mkv"));
  9.    mimeTypes.insert(pair<string, string>("mm",        "application/x-meme"));
  10.    mimeTypes.insert(pair<string, string>("mme",       "application/base64"));
  11.    mimeTypes.insert(pair<string, string>("mod",       "audio/mod"));
  12. --- xbmc/network/upnp/UPnPRenderer.cpp.original 2013-08-25 00:01:59.220277796 +0300
  13. +++ xbmc/network/upnp/UPnPRenderer.cpp  2013-08-25 00:02:30.929931420 +0300
  14. @@ -133,7 +133,7 @@
  15.          ",http-get:*:video/BMPEG:*"
  16.          ",http-get:*:video/xvid:*"
  17.          ",http-get:*:video/x-divx:*"
  18. -        ",http-get:*:video/x-matroska:*"
  19. +        ",http-get:*:video/x-mkv:*"
  20.          ",http-get:*:video/x-ms-wmv:*"
  21.          ",http-get:*:video/x-ms-avi:*"
  22.          ",http-get:*:video/x-flv:*"
  23.  
  24. --- lib/libUPnP/Platinum/Source/Core/PltProtocolInfo.cpp.original       2013-08-25 00:05:06.419233196 +0300
  25. +++ lib/libUPnP/Platinum/Source/Core/PltProtocolInfo.cpp        2013-08-25 00:05:26.759011064 +0300
  26. @@ -97,7 +97,7 @@
  27.      {"video/x-ms-wmv", "DLNA.ORG_PN=WMVHIGH_BASE;DLNA.ORG_OP=01;DLNA.ORG_CI=0;DLNA.ORG_FLAGS=01500000000000000000000000000000"},
  28.      {"video/x-msvideo","DLNA.ORG_PN=AVI;DLNA.ORG_OP=01;DLNA.ORG_CI=0;DLNA.ORG_FLAGS=01500000000000000000000000000000"},
  29.      {"video/x-ms-asf", "DLNA.ORG_OP=01;DLNA.ORG_CI=0;DLNA.ORG_FLAGS=01500000000000000000000000000000"},
  30. -    {"video/x-matroska","DLNA.ORG_OP=01;DLNA.ORG_CI=0"},
  31. +    {"video/x-mkv","DLNA.ORG_OP=01;DLNA.ORG_CI=0"},
  32.      {"video/x-flv",    "DLNA.ORG_OP=01;DLNA.ORG_CI=0"},
  33.  };
  34. --- lib/libUPnP/Neptune/Source/Core/NptHttp.cpp.original        2013-08-25 00:06:56.011036378 +0300
  35. +++ lib/libUPnP/Neptune/Source/Core/NptHttp.cpp 2013-08-25 00:07:34.440616720 +0300
  36. @@ -2887,7 +2887,7 @@
  37.      {"m4a",  "audio/mp4"},
  38.      {"wma",  "audio/x-ms-wma"},
  39.      {"wav",  "audio/x-wav"},
  40. -    {"mkv",  "video/x-matroska"},
  41. +    {"mkv",  "video/x-mkv"},
  42.      {"mpeg", "video/mpeg"},
  43.      {"mpg",  "video/mpeg"},
  44.      {"mp4",  "video/mp4"},
  45. @@ -2899,7 +2899,7 @@
  46.      {"wmv",  "video/x-ms-wmv"},
  47.      {"wtv",  "video/x-ms-wmv"},
  48.      {"asf",  "video/x-ms-asf"},
  49. -    {"mkv",  "video/x-matroska"},
  50. +    {"mkv",  "video/x-mkv"},
  51.      {"mk3d", "video/x-matroska-3d"},
  52.      {"flv",  "video/x-flv"},
  53.      {"avi",  "video/x-msvideo"},
  54.  
  55. --- lib/ffmpeg/libavformat/matroskaenc.c.original       2013-08-25 00:08:28.761023563 +0300
  56. +++ lib/ffmpeg/libavformat/matroskaenc.c        2013-08-25 00:08:52.269766862 +0300
  57. @@ -1299,7 +1299,7 @@
  58.  AVOutputFormat ff_matroska_muxer = {
  59.      .name              = "matroska",
  60.      .long_name         = NULL_IF_CONFIG_SMALL("Matroska file format"),
  61. -    .mime_type         = "video/x-matroska",
  62. +    .mime_type         = "video/x-mkv",
  63.      .extensions        = "mkv",
  64.      .priv_data_size    = sizeof(MatroskaMuxContext),
  65.  #if CONFIG_LIBVORBIS_ENCODER
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement