Searched refs:mDecOutputFormat (Results 1 – 2 of 2) sorted by relevance
65 private MediaFormat mDecOutputFormat; field in VideoDecoderPerfTest226 mDecOutputFormat = codec.getOutputFormat(); in doDecode()227 int width = mDecOutputFormat.getInteger(MediaFormat.KEY_WIDTH); in doDecode()228 int height = mDecOutputFormat.getInteger(MediaFormat.KEY_HEIGHT); in doDecode()248 round, name, format, mDecInputFormat, mDecOutputFormat); in doDecode()
114 private MediaFormat mDecOutputFormat; field in VideoEncoderDecoderTest1139 mDecOutputFormat = codec.getOutputFormat(); in runDecoder()1140 Log.d(TAG, "output format has changed to " + mDecOutputFormat); in runDecoder()1141 int colorFormat = mDecOutputFormat.getInteger(MediaFormat.KEY_COLOR_FORMAT); in runDecoder()1150 mVideoStride = mDecOutputFormat.containsKey(MediaFormat.KEY_STRIDE) in runDecoder()1151 ? mDecOutputFormat.getInteger(MediaFormat.KEY_STRIDE) in runDecoder()1152 : mDecOutputFormat.getInteger(MediaFormat.KEY_WIDTH); in runDecoder()1153 mVideoVStride = mDecOutputFormat.containsKey(MediaFormat.KEY_SLICE_HEIGHT) in runDecoder()1154 ? mDecOutputFormat.getInteger(MediaFormat.KEY_SLICE_HEIGHT) in runDecoder()1155 : mDecOutputFormat.getInteger(MediaFormat.KEY_HEIGHT); in runDecoder()