[Android] [PATCH 02/13] move Media flags to LibVLC

Edward Wang edward.c.wang at compdigitec.com
Thu Jan 15 20:49:14 CET 2015


On 2015-01-15 11:12, Jean-Baptiste Kempf <jb at videolan.org> wrote:
> +    public final static int MEDIA_FLAG_NO_VIDEO   = 0x01;
> >+    public final static int MEDIA_FLAG_NO_HWACCEL = 0x02;
> >+

How about

public final static int MEDIA_NO_VIDEO = 0x01;
public final static int MEDIA_NO_HWACCEL = 0x02;

The flag nature of it can always be put into a Javadoc.

Regards,
         Edward Wang


More information about the Android mailing list