Searched refs:mDecOutputFormat (Results 1 – 2 of 2) sorted by relevance
72 private MediaFormat mDecOutputFormat; field in VideoDecoderPerfTest265 mDecOutputFormat = codec.getOutputFormat(); in doDecode()266 int width = mDecOutputFormat.getInteger(MediaFormat.KEY_WIDTH); in doDecode()267 int height = mDecOutputFormat.getInteger(MediaFormat.KEY_HEIGHT); in doDecode()287 round, name, format, mDecInputFormat, mDecOutputFormat); in doDecode()
116 private MediaFormat mDecOutputFormat; field in VideoEncoderDecoderTest1240 mDecOutputFormat = codec.getOutputFormat(); in runDecoder()1241 Log.d(TAG, "output format has changed to " + mDecOutputFormat); in runDecoder()1242 int colorFormat = mDecOutputFormat.getInteger(MediaFormat.KEY_COLOR_FORMAT); in runDecoder()1251 mVideoStride = mDecOutputFormat.containsKey(MediaFormat.KEY_STRIDE) in runDecoder()1252 ? mDecOutputFormat.getInteger(MediaFormat.KEY_STRIDE) in runDecoder()1253 : mDecOutputFormat.getInteger(MediaFormat.KEY_WIDTH); in runDecoder()1254 mVideoVStride = mDecOutputFormat.containsKey(MediaFormat.KEY_SLICE_HEIGHT) in runDecoder()1255 ? mDecOutputFormat.getInteger(MediaFormat.KEY_SLICE_HEIGHT) in runDecoder()1256 : mDecOutputFormat.getInteger(MediaFormat.KEY_HEIGHT); in runDecoder()