aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-05-18 07:14:32 +0200
committerSven Gothel <[email protected]>2023-05-18 07:14:32 +0200
commit439d8e69a91c5c906dc5813beed85bc88e81f69b (patch)
tree5b367304675ab5d4a90764bc290391bc5d7384a0 /src/jogl
parent4971a01724d926039fbdbabafca1b36dab380409 (diff)
FFMPEGMediaPlayer: AudioFormat is now a stand-alone class (gluegen 2b339721a4d6dd4f3af129a4654375b15c7ea340)
Diffstat (limited to 'src/jogl')
-rw-r--r--src/jogl/classes/jogamp/opengl/util/av/impl/FFMPEGMediaPlayer.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jogl/classes/jogamp/opengl/util/av/impl/FFMPEGMediaPlayer.java b/src/jogl/classes/jogamp/opengl/util/av/impl/FFMPEGMediaPlayer.java
index 13c698486..cb65761ad 100644
--- a/src/jogl/classes/jogamp/opengl/util/av/impl/FFMPEGMediaPlayer.java
+++ b/src/jogl/classes/jogamp/opengl/util/av/impl/FFMPEGMediaPlayer.java
@@ -35,8 +35,8 @@ import java.security.PrivilegedAction;
import com.jogamp.opengl.GL;
import com.jogamp.opengl.GL2ES2;
import com.jogamp.opengl.GLException;
+import com.jogamp.common.av.AudioFormat;
import com.jogamp.common.av.AudioSink;
-import com.jogamp.common.av.AudioSink.AudioFormat;
import com.jogamp.common.av.AudioSinkFactory;
import com.jogamp.common.av.TimeFrameI;
import com.jogamp.common.util.IOUtil;
@@ -288,7 +288,7 @@ public class FFMPEGMediaPlayer extends GLMediaPlayerImpl {
// Audio
//
- private AudioSink.AudioFormat avChosenAudioFormat;
+ private AudioFormat avChosenAudioFormat;
private int audioSamplesPerFrameAndChannel = 0;
public FFMPEGMediaPlayer() {