// /// <summary> /// Retrieve features from the bitstream. The *features structure is filled /// with information gathered from the bitstream. /// Returns false in case of error or version mismatch. /// In case of error, features->bitstream_status will reflect the error code. /// </summary> /// <param name="data"></param> /// <param name="data_size"></param> /// <param name="features"></param> /// <returns></returns> public static VP8StatusCode WebPGetFeatures(IntPtr data, UIntPtr data_size, ref WebPBitstreamFeatures features) { return(Decode.WebPGetFeaturesInternal(data, data_size, ref features, WEBP_DECODER_ABI_VERSION)); }
public static extern VP8StatusCode WebPGetFeaturesInternal([InAttribute()] IntPtr param0, UIntPtr param1, ref WebPBitstreamFeatures param2, int param3);