Don't print warnings about known extensions that don't affect the hub at all (DHT0).

This commit is contained in:
Jan Vidar Krey 2011-11-30 14:14:36 +01:00
parent 2396d8555c
commit 675e6af3ba
1 changed files with 4 additions and 0 deletions

View File

@ -181,6 +181,10 @@ static int convert_support_fourcc(int fourcc)
case FOURCC('A','D','C','S'):
return feature_adcs;
// ignore these extensions, they are not useful for the hub.
case FOURCC('D','H','T','0'):
return 0;
default:
LOG_DEBUG("Unknown extension: %x", fourcc);
return 0;