You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
443 B
21 lines
443 B
package com.frank.ffmpeg.floating;
|
|
|
|
import android.support.annotation.IntDef;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
/**
|
|
* Created by yhao on 2017/12/23.
|
|
* https://github.com/yhaolpz
|
|
*/
|
|
|
|
public class Screen {
|
|
public static final int width = 0;
|
|
public static final int height = 1;
|
|
|
|
@IntDef({width, height})
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
@interface screenType {
|
|
}
|
|
}
|
|
|