Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abook_check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_android
abook_check
Commits
a180cb68
Commit
a180cb68
authored
Jul 29, 2020
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
THETAカメラ画面からTHETAライブラリ及びTHETAプレビューに遷移して戻った時は漏出調整できなくなる問題対応
parent
42a4ec5a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
ABVJE_UI_Android/src/com/theta/view/MJpegView.java
+5
-0
No files found.
ABVJE_UI_Android/src/com/theta/view/MJpegView.java
View file @
a180cb68
...
...
@@ -119,9 +119,13 @@ public class MJpegView extends SurfaceView implements SurfaceHolder.Callback {
* @param source Source stream
*/
public
void
setSource
(
MJpegInputStream
source
)
{
if
(
source
==
null
)
{
//mMJpegInputStreamのクローズ作業のため、現在スレッドをストップする。
stopPlay
();
}
else
{
mMJpegInputStream
=
source
;
play
();
}
}
/**
* Get source stream for receiving motion JPEG
...
...
@@ -239,6 +243,7 @@ public class MJpegView extends SurfaceView implements SurfaceHolder.Callback {
if
(
mMJpegInputStream
!=
null
)
{
try
{
mMJpegInputStream
.
close
();
mMJpegInputStream
=
null
;
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
Logger
.
e
(
TAG
,
"mMJpegInputStream IOException = "
+
e
.
toString
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment