Skip to content

Commit

Permalink
package name changed
Browse files Browse the repository at this point in the history
  • Loading branch information
Kay Schröer authored and Kay Schröer committed Aug 14, 2018
1 parent 073a37e commit 7ccac7e
Show file tree
Hide file tree
Showing 18 changed files with 36 additions and 36 deletions.
4 changes: 2 additions & 2 deletions Compile.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

echo Compiling java classes ...
cd Java
javac com/mplayer/MediaPlayer.java
javac org/mplayer/MediaPlayer.java
javac Test.java

echo Generating jni header ...
javah -o ../C/MediaPlayerJNI.h com.mplayer.MediaPlayerJNI
javah -o ../C/MediaPlayerJNI.h org.mplayer.MediaPlayerJNI
cd ..

echo Building dll library ...
Expand Down
2 changes: 1 addition & 1 deletion Java/Test.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import java.util.Scanner;
import com.mplayer.MediaPlayer;
import org.mplayer.MediaPlayer;

// Simple console player demo

Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
package com.mplayer;

import com.mplayer.enumerations.MPDeviceType;
import com.mplayer.enumerations.MPMode;
import com.mplayer.enumerations.MPTimeFormat;
import com.mplayer.exceptions.MCIDeviceError;
import com.mplayer.structures.MCI_Generic_Parms;
import com.mplayer.structures.MCI_GetDevCaps_Parms;
import com.mplayer.structures.MCI_Open_Parms;
import com.mplayer.structures.MCI_Play_Parms;
import com.mplayer.structures.MCI_Record_Parms;
import com.mplayer.structures.MCI_Save_Parms;
import com.mplayer.structures.MCI_Seek_Parms;
import com.mplayer.structures.MCI_Set_Parms;
import com.mplayer.structures.MCI_Status_Parms;
import com.mplayer.utils.StringPointer;
package org.mplayer;

import org.mplayer.enumerations.MPDeviceType;
import org.mplayer.enumerations.MPMode;
import org.mplayer.enumerations.MPTimeFormat;
import org.mplayer.exceptions.MCIDeviceError;
import org.mplayer.structures.MCI_Generic_Parms;
import org.mplayer.structures.MCI_GetDevCaps_Parms;
import org.mplayer.structures.MCI_Open_Parms;
import org.mplayer.structures.MCI_Play_Parms;
import org.mplayer.structures.MCI_Record_Parms;
import org.mplayer.structures.MCI_Save_Parms;
import org.mplayer.structures.MCI_Seek_Parms;
import org.mplayer.structures.MCI_Set_Parms;
import org.mplayer.structures.MCI_Status_Parms;
import org.mplayer.utils.StringPointer;

/**
* Media player wrapper.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.mplayer;
package org.mplayer;

import com.mplayer.structures.MCI_Generic_Parms;
import com.mplayer.utils.StringPointer;
import org.mplayer.structures.MCI_Generic_Parms;
import org.mplayer.utils.StringPointer;

/**
* This class loads the dll library and provides the native methods.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mplayer.enumerations;
package org.mplayer.enumerations;

/**
* This enumeration is used if one wants to tell the audio interface which
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mplayer.enumerations;
package org.mplayer.enumerations;

/**
* This enumeration represents the current playback mode (f.e. that a file is
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mplayer.enumerations;
package org.mplayer.enumerations;

/**
* This enumeration is used to set the format of the value which is returned by
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mplayer.exceptions;
package org.mplayer.exceptions;

/**
* This exception is thrown if the interface recognizes an error (f.e. if the
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mplayer.structures;
package org.mplayer.structures;

/**
* The MCI_GENERIC_PARMS structure is used for MCI command messages that have
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mplayer.structures;
package org.mplayer.structures;

/**
* The MCI_GETDEVCAPS_PARMS structure contains device-capability information
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mplayer.structures;
package org.mplayer.structures;

/**
* The MCI_OPEN_PARMS structure contains information for the MCI_OPEN command.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mplayer.structures;
package org.mplayer.structures;

/**
* The MCI_PLAY_PARMS structure contains positioning information for the
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mplayer.structures;
package org.mplayer.structures;

/**
* The MCI_RECORD_PARMS structure contains positioning information for the
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mplayer.structures;
package org.mplayer.structures;

/**
* The MCI_SAVE_PARMS structure contains the filename information for the
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mplayer.structures;
package org.mplayer.structures;

/**
* The MCI_SEEK_PARMS structure contains positioning information for the
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mplayer.structures;
package org.mplayer.structures;

/**
* The MCI_SET_PARMS structure contains information for the MCI_SET command.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mplayer.structures;
package org.mplayer.structures;

/**
* The MCI_STATUS_PARMS structure contains information for the MCI_STATUS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mplayer.utils;
package org.mplayer.utils;

/**
* This is a helper class for strings which are passed as parameters to a
Expand Down

0 comments on commit 7ccac7e

Please sign in to comment.