* Add Sony BDP-S370 MKV support, by pretending they're DiVX files.

This commit is contained in:
Justin Maggard
2010-10-05 23:54:07 +00:00
parent 4ecfe18bb8
commit 091b90daa7
3 changed files with 23 additions and 2 deletions

View File

@ -622,6 +622,14 @@ callback(void *args, int argc, char **argv, char **azColName)
strcpy(mime+8, "mkv");
}
}
else if( passed_args->client == ESonyBDP )
{
if( strcmp(mime+6, "x-matroska") == 0 ||
strcmp(mime+6, "mpeg") == 0 )
{
strcpy(mime+6, "divx");
}
}
}
else if( *mime == 'a' )
{