Lines Matching full:features
343 goto ReturnWidthHeight; // Just return features from VP8X header.
683 static void DefaultFeatures(WebPBitstreamFeatures* const features) {
684 assert(features != NULL);
685 memset(features, 0, sizeof(*features));
689 WebPBitstreamFeatures* const features) {
690 if (features == NULL || data == NULL) {
693 DefaultFeatures(features);
695 // Only parse enough of the data to retrieve the features.
697 &features->width, &features->height,
698 &features->has_alpha, &features->has_animation,
699 &features->format, NULL);
707 WebPBitstreamFeatures features;
709 if (GetFeatures(data, data_size, &features) != VP8_STATUS_OK) {
714 *width = features.width;
717 *height = features.height;
741 WebPBitstreamFeatures* features,
746 if (features == NULL) {
749 return GetFeatures(data, data_size, features);