Fixed
Status Update
Comments
br...@google.com <br...@google.com> #2
Some additional information - it seems that it affects only hardware decoded videos (e.g. enabling "Force software decoding" in Archos Video Player makes the issue disappear.) It's also interesting to note that Kodi does not show the issue even with hardware acceleration.
br...@google.com <br...@google.com> #4
Have the same issue with my NP on 6.0. Washed out blacks. Only tried it with the Play movies & TV app. My other NP on 5.1.1 works fine.
mi...@gmail.com <mi...@gmail.com> #5
Same problem on two Nexus Players with Android TV 6.0. Dark movies are unwatchable - darks are too light...washed out as others say. Only occurs during video playback. Not affecting interface of OS or apps.
br...@google.com <br...@google.com> #6
sigh... all the blacks look like light grey :( Please fix this. Videos are unwatchable.
me...@chrisbianca.com <me...@chrisbianca.com> #7
Same here, noticed after the 6.0 update.
br...@google.com <br...@google.com>
br...@google.com <br...@google.com> #8
Same issue here with youtube. It's really annoying.
Description
The problem is that the second time the callback is called the error is nil and the returned GMSPlace has nil values
What steps will reproduce the problem? Please provide a link to a
demonstration page if at all possible, or attach code.
1. Use a GMSPlacesClient to search for "Ra"
2. One of the results will be "Raj Bjavan Road"
3. Call lookUpPlaceID with the associated GMSAutocompletePrediction from the previous step
Code snippet:
placesClient.lookUpPlaceID(place.placeID, callback: { (placeDetails: GMSPlace?, error: NSError?) -> Void in
if let error = error {
print("lookup place id query error: \(error.localizedDescription)")
return
}
// for some reason the callback for this function is called twice when it fails to get the place data, so we need to check the placeDetails name and address to see if it's actually valid or else it will trigger a crash
if let placeDetails = placeDetails,
shortAddress = placeDetails.name,
address = placeDetails.formattedAddress {
self.searchTextField.resignFirstResponder()
self.delegate?.didSelectLocation(placeDetails.coordinate, shortAddress: shortAddress, address: address)
}
else {
print("Place details invalid")
}
})
Operating system version: iOS 9
Google Maps SDK for iOS version: 1.11.1
Hardware model: iPhone 6
*********************************************************
For developers viewing this issue: please click the 'star' icon to be
notified of future changes, and to let us know how many of you are
interested in seeing it resolved.
*********************************************************