Using requested video scaling mode in NuPlayer

In comparison to AwesomePlayer, NuPlayer has lack of setting
the video scaling mode flag on event kWhatVideoSizeChanged.
That causes the issues with wrong video screen ratio, because
ACodec has hardcoded flag which was the last one set up for
particular native window object, even that flow goes back to NuPlayer.

Bug: 29338922

Change-Id: I1fe28e64d58cdec0cda596eb2f6640ab9be7fd21
diff --git a/media/libmediaplayerservice/nuplayer/NuPlayer.cpp b/media/libmediaplayerservice/nuplayer/NuPlayer.cpp
index 77b9799..6ef2b3a 100644
--- a/media/libmediaplayerservice/nuplayer/NuPlayer.cpp
+++ b/media/libmediaplayerservice/nuplayer/NuPlayer.cpp
@@ -948,6 +948,7 @@
                 sp<AMessage> inputFormat =
                         mSource->getFormat(false /* audio */);
 
+                setVideoScalingMode(mVideoScalingMode);
                 updateVideoSize(inputFormat, format);
             } else if (what == DecoderBase::kWhatShutdownCompleted) {
                 ALOGV("%s shutdown completed", audio ? "audio" : "video");