Fix too-long TAG + remove unused methods.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=122426685
This commit is contained in:
olly 2016-05-16 09:23:38 -07:00 committed by Oliver Woodman
parent 2e8e8aba9d
commit ecf50c4f9e
2 changed files with 1 additions and 9 deletions

View File

@ -363,14 +363,6 @@ public abstract class MediaCodecTrackRenderer extends TrackRenderer {
return codec == null && format != null;
}
protected final boolean codecInitialized() {
return codec != null;
}
protected final boolean haveFormat() {
return format != null;
}
@Override
protected void onDisabled() {
format = null;

View File

@ -49,7 +49,7 @@ public class MediaCodecVideoTrackRenderer extends MediaCodecTrackRenderer {
// No extra methods
}
private static final String TAG = "MediaCodecVideoTrackRenderer";
private static final String TAG = "MediaCodecVideoRenderer";
// TODO: Use MediaFormat constants if these get exposed through the API. See
// [Internal: b/14127601].