HomeSort by relevance Sort by last modified time
    Searched refs:CodecException (Results 1 - 16 of 16) sorted by null

  /cts/tests/tests/media/src/android/media/cts/
ResourceManagerTestActivityBase.java 56 public void onError(MediaCodec codec, MediaCodec.CodecException e) {
179 } catch (MediaCodec.CodecException e) {
180 Log.d(TAG, "CodecException 0x" + Integer.toHexString(e.getErrorCode()));
209 } catch (MediaCodec.CodecException e) {
210 Log.d(TAG, "useCodecs got CodecException 0x" + Integer.toHexString(e.getErrorCode()));
211 if (e.getErrorCode() == MediaCodec.CodecException.ERROR_RECLAIMED) {
MediaCodecTest.java 25 import android.media.MediaCodec.CodecException;
128 private static void logMediaCodecException(MediaCodec.CodecException ex) {
130 Log.w(TAG, "CodecException Recoverable: " + ex.getErrorCode());
132 Log.w(TAG, "CodecException Transient: " + ex.getErrorCode());
134 Log.w(TAG, "CodecException Fatal: " + ex.getErrorCode());
174 } catch (MediaCodec.CodecException e) {
176 fail("start should not return MediaCodec.CodecException on wrong state");
182 } catch (MediaCodec.CodecException e) {
184 fail("flush should not return MediaCodec.CodecException on wrong state");
192 } catch (MediaCodec.CodecException e)
    [all...]
MediaCodecCapabilitiesTest.java 580 } catch (MediaCodec.CodecException e) {
583 if (e.getErrorCode() == MediaCodec.CodecException.ERROR_INSUFFICIENT_RESOURCE) {
584 Log.d(TAG, "Got CodecException with ERROR_INSUFFICIENT_RESOURCE.");
587 fail("Unexpected CodecException " + e.getDiagnosticInfo());