6.5.4礼物冠名
This commit is contained in:
@@ -35,6 +35,7 @@ import com.yunbao.video.views.VideoMusicViewHolder;
|
||||
import com.yunbao.video.views.VideoProcessViewHolder;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.lang.ref.SoftReference;
|
||||
import java.lang.ref.WeakReference;
|
||||
import java.util.ArrayList;
|
||||
@@ -659,7 +660,11 @@ public class VideoEditActivity extends AbsActivity implements
|
||||
mHandler.release();
|
||||
}
|
||||
if (mMetadataRetriever != null) {
|
||||
mMetadataRetriever.release();
|
||||
try {
|
||||
mMetadataRetriever.release();
|
||||
} catch (IOException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
if (mFilterViewHolder != null) {
|
||||
mFilterViewHolder.release();
|
||||
|
||||
@@ -334,7 +334,11 @@ public class VideoPublishActivity extends AbsActivity implements ITXLivePlayList
|
||||
e.printStackTrace();
|
||||
} finally {
|
||||
if (mmr != null) {
|
||||
mmr.release();
|
||||
try {
|
||||
mmr.release();
|
||||
} catch (IOException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (bitmap == null) {
|
||||
|
||||
Reference in New Issue
Block a user