Merge "Fix video scaling mode validity check." into jb-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
9de61ae0ed
@@ -737,7 +737,7 @@ public class MediaPlayer
|
||||
* @see MediaPlayer#VIDEO_SCALING_MODE_SCALE_TO_FIT_WITH_CROPPING
|
||||
*/
|
||||
public void setVideoScalingMode(int mode) {
|
||||
if (isVideoScalingModeSupported(mode)) {
|
||||
if (!isVideoScalingModeSupported(mode)) {
|
||||
final String msg = "Scaling mode " + mode + " is not supported";
|
||||
throw new IllegalArgumentException(msg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user