diff options
Diffstat (limited to 'telecomm')
-rw-r--r-- | telecomm/java/android/telecomm/VideoCallProfile.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/telecomm/java/android/telecomm/VideoCallProfile.java b/telecomm/java/android/telecomm/VideoCallProfile.java index fc7b2c3..5b15e4a 100644 --- a/telecomm/java/android/telecomm/VideoCallProfile.java +++ b/telecomm/java/android/telecomm/VideoCallProfile.java @@ -77,6 +77,15 @@ public class VideoCallProfile implements Parcelable { * Creates an instance of the VideoCallProfile * * @param videoState The video state. + */ + public VideoCallProfile(int videoState) { + this(videoState, QUALITY_DEFAULT); + } + + /** + * Creates an instance of the VideoCallProfile + * + * @param videoState The video state. * @param quality The video quality. */ public VideoCallProfile(int videoState, int quality) { |