コード例 #1
0
ファイル: Decode.cs プロジェクト: MattMakes/WebPConverter
 public static extern VP8StatusCode WebPGetFeaturesInternal([In()] IntPtr param0, UIntPtr param1, ref WebPBitstreamFeatures param2, int param3);
コード例 #2
0
 /// <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(WebPConsole.ext.NativeMethods.WebPGetFeaturesInternal(data, data_size, ref features, WEBP_DECODER_ABI_VERSION));
 }