Commit 38d49776 authored by Filippo Carone's avatar Filippo Carone

jvlc: libvlcState enum index comment added for reference

parent 67923a07
......@@ -28,14 +28,14 @@ package org.videolan.jvlc.internal;
public enum LibVlcState
{
libvlc_NothingSpecial,
libvlc_Opening,
libvlc_Buffering,
libvlc_Playing,
libvlc_Paused,
libvlc_Stopped,
libvlc_Forward,
libvlc_Backward,
libvlc_Ended,
libvlc_Error;
libvlc_NothingSpecial, // 0
libvlc_Opening, // 1
libvlc_Buffering, // 2
libvlc_Playing, // 3
libvlc_Paused, // 4
libvlc_Stopped, // 5
libvlc_Forward, // 6
libvlc_Backward, // 7
libvlc_Ended, // 8
libvlc_Error; // 9
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment