-
Notifications
You must be signed in to change notification settings - Fork 24
Multicamera stability fixes #15
base: A10_V1
Are you sure you want to change the base?
Conversation
Tracked-On : OAM-89744 Signed-off-by: Shiva Kumara <[email protected]> Signed-off-by: kbillore <[email protected]>
} | ||
startRecordingVideo(); | ||
} | ||
}catch (Exception e) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Introduce space between } and catch
if (mIsRecordingVideo) { | ||
stopRecordingVideo(); | ||
} else { | ||
if(ic_camera.getIsCameraOrSurveillance() == 1) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
introduce space between if and (
} | ||
else { | ||
Mactivity.visibleCameraSwitchButton(); | ||
if(ic_camera.getWhichCamera() == 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
introduce space between if and (
//Toast.makeText(mActivity, "camera split clicked ", Toast.LENGTH_LONG).show(); | ||
IntelCamera ic_camera = IntelCamera.getInstance(); | ||
MultiViewActivity Mactivity = (MultiViewActivity) mActivity; | ||
if(ic_camera.getIsCameraOrSurveillance() == 0){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
introduce space between if and (
public void onClick(View v) { | ||
|
||
IntelCamera ic_camera = IntelCamera.getInstance(); | ||
if(ic_camera.getWhichCamera() == 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
introduce space between if and (
} | ||
|
||
FrameVisibility[0] = frameView0.getVisibility(); | ||
}else { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
introduce space between } and else
break; | ||
case R.id.Record2: | ||
this.setTitle("BotmLeftCam"); | ||
if(exitRecordScrnFlag == true) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
introduce space between if and (
|
||
FrameVisibility[3] = frameView3.getVisibility(); | ||
|
||
}else { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
introduce space between } and else
@@ -806,10 +1204,90 @@ public void enterFullScreen(View view) { | |||
frameView2.setVisibility(View.GONE); | |||
LinLayout1.setVisibility(View.GONE); | |||
|
|||
break; | |||
case R.id.Record3: | |||
if(exitRecordScrnFlag == true) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Introduce space between if and (
} | ||
|
||
FrameVisibility[2] = frameView2.getVisibility(); | ||
}else { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Introduce space between } and else
No description provided.