Change the API of AndroidVideoWindowImpl class

This commit is contained in:
François Grisez 2014-10-16 10:39:14 +02:00
parent 2ce93fe5dc
commit ee2a235302

View file

@ -14,9 +14,9 @@ public interface LinphonePlayer {
*
*/
public enum State {
closed, /**< No file is open */
paused, /**< A file is open and playback is not running */
playing; /**< A file is open and playback is running */
closed, /*< No file is open */
paused, /*< A file is open and playback is not running */
playing; /*< A file is open and playback is running */
public static State fromValue(int value) {
if(value == 0) {