
MediaCodecDecoder test is used to test media codec decoders. It takes .mp4 file as an input to generate decoded YUV frames and audio frames in .yuv and .wav files (if desired).

Command line inputs
-------------------
It takes two types of command line inputs: 
1. Operations to be performed 
	The following operations are possible for given command line inputs.
	v -> useVideo (Working)
	a -> useAudio (Working)  
	q -> noOutputFiles (Working)
	p -> playback (working)
	S -> useSurface (not working)
2. Input mp4 file name. (Present in C drive)  

Working commandline parameter examples : -v med.mp4
                                         -a med.mp4
                                         -v -a med.mp4
                                         -q med.mp4
                                         -p -W <width> -H <height> med.mp4


Check output files
---------------------
Unless "-q" is passed as a commandline parameter, decoded outputs for audio and video frames will be dumped at C:/temp/AudioDecoder_out.wav and C:/temp/VideoDecoder_out.yuv.



