chore: add more logs

This commit is contained in:
Brian Sztamfater 2023-06-06 19:21:36 +01:00
parent 4cd21b64cc
commit e49aa1e9f4
2 changed files with 6 additions and 3 deletions

View File

@ -334,8 +334,6 @@ public class AlphaMovieView extends GLTextureView {
AssetFileDescriptor afd = context.getResources().openRawResourceFd(resId); AssetFileDescriptor afd = context.getResources().openRawResourceFd(resId);
if (afd == null) return; if (afd == null) return;
mediaPlayer.setDataSource(afd.getFileDescriptor(), afd.getStartOffset(), afd.getLength());
FileDescriptor fileDescriptor = afd.getFileDescriptor(); FileDescriptor fileDescriptor = afd.getFileDescriptor();
long startOffset = afd.getStartOffset(); long startOffset = afd.getStartOffset();
long endOffset = afd.getLength(); long endOffset = afd.getLength();
@ -347,7 +345,7 @@ public class AlphaMovieView extends GLTextureView {
onDataSourceSet(retriever); onDataSourceSet(retriever);
} catch (IOException e) { } catch (IOException e) {
Log.e(TAG, e.getMessage(), e); Log.e(TAG + " setVideoFromResourceId", e.getMessage(), e);
} }
} }

View File

@ -4,6 +4,7 @@ import static android.view.ViewGroup.LayoutParams.MATCH_PARENT;
import android.content.Context; import android.content.Context;
import android.os.Bundle; import android.os.Bundle;
import android.util.Log;
import android.view.Gravity; import android.view.Gravity;
import android.widget.LinearLayout; import android.widget.LinearLayout;
@ -24,6 +25,7 @@ public class TransparentVideoViewManager extends SimpleViewManager<LinearLayout>
private static List<LinearLayout> sInstances = new ArrayList<>(); private static List<LinearLayout> sInstances = new ArrayList<>();
public static final String REACT_CLASS = "TransparentVideoView"; public static final String REACT_CLASS = "TransparentVideoView";
private static final String TAG = "TransparentVideoViewManager";
ReactApplicationContext reactContext; ReactApplicationContext reactContext;
@ -64,8 +66,11 @@ public class TransparentVideoViewManager extends SimpleViewManager<LinearLayout>
String file = src.getString("uri"); String file = src.getString("uri");
try { try {
Integer rawResourceId = Utils.getRawResourceId(reactContext, file); Integer rawResourceId = Utils.getRawResourceId(reactContext, file);
Log.d(TAG + " setSrc", "ResourceID: " + rawResourceId);
alphaMovieView.setVideoFromResourceId(reactContext, rawResourceId); alphaMovieView.setVideoFromResourceId(reactContext, rawResourceId);
} catch (RuntimeException e) { } catch (RuntimeException e) {
Log.e(TAG + " setSrc", e.getMessage(), e);
alphaMovieView.setVideoByUrl(file); alphaMovieView.setVideoByUrl(file);
} }
} }