Don't print warnings about known extensions that don't affect the hub at all (DHT0).
This commit is contained in:
parent
2396d8555c
commit
675e6af3ba
|
@ -181,6 +181,10 @@ static int convert_support_fourcc(int fourcc)
|
||||||
case FOURCC('A','D','C','S'):
|
case FOURCC('A','D','C','S'):
|
||||||
return feature_adcs;
|
return feature_adcs;
|
||||||
|
|
||||||
|
// ignore these extensions, they are not useful for the hub.
|
||||||
|
case FOURCC('D','H','T','0'):
|
||||||
|
return 0;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
LOG_DEBUG("Unknown extension: %x", fourcc);
|
LOG_DEBUG("Unknown extension: %x", fourcc);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue