[WARNING] {sdhd} is deprecated and will be removed in the next release. Use {hd} instead.

This commit is contained in:
Reinhard Pointner 2017-04-02 05:35:26 +08:00
parent cc4f00d17c
commit f826d42449
1 changed files with 7 additions and 7 deletions

View File

@ -443,13 +443,6 @@ public class MediaBindingBean {
return "SD";
}
@Deprecated
@Define("sdhd")
public String getVideoDefinitionCategoryDeprecated() {
debug.warning("[WARNING] {sdhd} is deprecated and will be removed in the next release. Use {hd} instead.");
return getWidth() >= 1280 || getHeight() >= 720 ? "HD" : "SD";
}
@Define("dim")
public List<Integer> getDimension() {
// collect value from Video Stream 0 or Image Stream 0
@ -1306,4 +1299,11 @@ public class MediaBindingBean {
public static final String EXCEPTION_UNDEFINED = "undefined";
public static final String EXCEPTION_SAMPLE_FILE_NOT_SET = "Sample file has not been set. Click \"Change Sample\" to select a sample file.";
@Deprecated
@Define("sdhd")
public String getVideoDefinitionCategoryDeprecated() {
debug.severe("[WARNING] {sdhd} is deprecated and will be removed in the next release. Use {hd} instead.");
return getVideoDefinitionCategory();
}
}