Commit 095e2feb by bachinger Committed by Oliver Woodman

Enable source code formatting

PiperOrigin-RevId: 375979170
parent ee2af43a
...@@ -23,7 +23,6 @@ import android.content.Context; ...@@ -23,7 +23,6 @@ import android.content.Context;
import android.content.Intent; import android.content.Intent;
import android.content.SharedPreferences; import android.content.SharedPreferences;
import android.content.pm.PackageManager; import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.content.res.AssetManager; import android.content.res.AssetManager;
import android.net.Uri; import android.net.Uri;
import android.os.AsyncTask; import android.os.AsyncTask;
......
...@@ -29,15 +29,14 @@ ...@@ -29,15 +29,14 @@
#define ALOGV(...) \ #define ALOGV(...) \
((void)__android_log_print(ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) ((void)__android_log_print(ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__))
#define DECODER_FUNC(RETURN_TYPE, NAME, ...) \ #define DECODER_FUNC(RETURN_TYPE, NAME, ...) \
extern "C" { \ extern "C" { \
JNIEXPORT RETURN_TYPE \ JNIEXPORT RETURN_TYPE \
Java_com_google_android_exoplayer2_ext_flac_FlacDecoderJni_##NAME(JNIEnv *env, \ Java_com_google_android_exoplayer2_ext_flac_FlacDecoderJni_##NAME( \
jobject thiz, \ JNIEnv *env, jobject thiz, ##__VA_ARGS__); \
##__VA_ARGS__); \ } \
} \ JNIEXPORT RETURN_TYPE \
JNIEXPORT RETURN_TYPE \ Java_com_google_android_exoplayer2_ext_flac_FlacDecoderJni_##NAME( \
Java_com_google_android_exoplayer2_ext_flac_FlacDecoderJni_##NAME( \
JNIEnv *env, jobject thiz, ##__VA_ARGS__) JNIEnv *env, jobject thiz, ##__VA_ARGS__)
class JavaDataSource : public DataSource { class JavaDataSource : public DataSource {
......
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