blob: 488c40de2625a1ff5a39d9ff83e76b5d74fd85e2 [file] [log] [blame]
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.providers.media;
import android.net.Uri;
import android.os.Bundle;
import java.io.PrintWriter;
/** Interface over MediaTranscodeManager access */
public interface TranscodeHelper {
public void freeCache(long bytes);
public void onAnrDelayStarted(String packageName, int uid, int tid, int reason);
public boolean transcode(String src, String dst, int uid, int reason);
public String getIoPath(String path, int uid);
public int shouldTranscode(String path, int uid, Bundle bundle);
public boolean supportsTranscode(String path);
public void onUriPublished(Uri uri);
public void onFileOpen(String path, String ioPath, int uid, int transformsReason);
public boolean isTranscodeFileCached(String path, String transcodePath);
public boolean deleteCachedTranscodeFile(long rowId);
public void dump(PrintWriter writer);
}