001 package com.skype.api;
002
003 import com.skype.api.Video;
004
005
006 public interface VideoListener {
007 /** This event gets called when there are changes to Video properties defined in Video.Property */
008 public void onPropertyChange(Video object, Video.Property p, int value, String svalue);
009 /**
010 * onCaptureRequestCompleted
011 * @param object
012 * @param requestId
013 * @param isSuccessful
014 * @param image
015 * @param width
016 * @param height
017 */
018 public void onCaptureRequestCompleted(Video object, int requestId, boolean isSuccessful, byte[] image, int width, int height);
019 }