Skip to content

Commit

Permalink
changed name of Player class to VlcjWind so instead of Player player =
Browse files Browse the repository at this point in the history
new Player(width, height, vlcDetectionListener);
player.getMediaPlayer();
it would be VlcjWind vw = new VlcjWind(width, height,
vlcDetectionListener);
vw.getMediaPlayer();
  • Loading branch information
APayerl committed Aug 10, 2017
1 parent cf8ab0e commit bc26272
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import uk.co.caprica.vlcj.player.direct.format.RV32BufferFormat;
import uk.co.caprica.vlcj.runtime.RuntimeUtil;

public class Player
public class VlcjWind
{
private final DirectMediaPlayerComponent mediaPlayerComponent;
private List<FrameListener> listeners;
Expand All @@ -26,7 +26,7 @@ public class Player
* @param width max video width to support
* @param height max video height to support
*/
public Player(final int width, final int height, VlcDetectionListener vdl)
public VlcjWind(final int width, final int height, VlcDetectionListener vdl)
{
System.out.println("Requested player dimensions: " + width + " x " + height);
if(!new NativeDiscovery().discover()) {
Expand Down

0 comments on commit bc26272

Please sign in to comment.