Commit df4e4a72 by olly Committed by Oliver Woodman

Print the name of the decoder we failed to query.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=124712775
parent 189a2502
......@@ -169,6 +169,9 @@ public final class MediaCodecUtil {
// Suppress error querying secondary codec capabilities up to API level 23.
Log.e(TAG, "Skipping codec " + codecName + " (failed to query capabilities)");
} else {
// Rethrow error querying primary codec capabilities, or secondary codec
// capabilities if API level is greater than 23.
Log.e(TAG, "Failed to query codec " + codecName + " (" + supportedType + ")");
throw e;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment