├── Android.bp ├── C2FFMPEGAudioDecodeComponent.cpp ├── C2FFMPEGAudioDecodeComponent.h ├── C2FFMPEGAudioDecodeInterface.cpp ├── C2FFMPEGAudioDecodeInterface.h ├── C2FFMPEGCommon.h ├── C2FFMPEGComponentInterface.cpp ├── C2FFMPEGComponentInterface.h ├── C2FFMPEGComponentStore.cpp ├── C2FFMPEGComponentStore.h ├── C2FFMPEGVideoDecodeComponent.cpp ├── C2FFMPEGVideoDecodeComponent.h ├── C2FFMPEGVideoDecodeInterface.cpp ├── C2FFMPEGVideoDecodeInterface.h ├── android.hardware.media.c2-ffmpeg-extended-seccomp_policy ├── android.hardware.media.c2-service-ffmpeg.rc ├── android.hardware.media.c2-service-ffmpeg.xml ├── apex_file_contexts ├── apex_manifest.json ├── ffmpeg_utils ├── Android.bp ├── ffmpeg_hwaccel.c ├── ffmpeg_hwaccel.h ├── ffmpeg_utils.cpp └── ffmpeg_utils.h └── main.cpp /Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/Android.bp -------------------------------------------------------------------------------- /C2FFMPEGAudioDecodeComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/C2FFMPEGAudioDecodeComponent.cpp -------------------------------------------------------------------------------- /C2FFMPEGAudioDecodeComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/C2FFMPEGAudioDecodeComponent.h -------------------------------------------------------------------------------- /C2FFMPEGAudioDecodeInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/C2FFMPEGAudioDecodeInterface.cpp -------------------------------------------------------------------------------- /C2FFMPEGAudioDecodeInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/C2FFMPEGAudioDecodeInterface.h -------------------------------------------------------------------------------- /C2FFMPEGCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/C2FFMPEGCommon.h -------------------------------------------------------------------------------- /C2FFMPEGComponentInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/C2FFMPEGComponentInterface.cpp -------------------------------------------------------------------------------- /C2FFMPEGComponentInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/C2FFMPEGComponentInterface.h -------------------------------------------------------------------------------- /C2FFMPEGComponentStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/C2FFMPEGComponentStore.cpp -------------------------------------------------------------------------------- /C2FFMPEGComponentStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/C2FFMPEGComponentStore.h -------------------------------------------------------------------------------- /C2FFMPEGVideoDecodeComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/C2FFMPEGVideoDecodeComponent.cpp -------------------------------------------------------------------------------- /C2FFMPEGVideoDecodeComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/C2FFMPEGVideoDecodeComponent.h -------------------------------------------------------------------------------- /C2FFMPEGVideoDecodeInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/C2FFMPEGVideoDecodeInterface.cpp -------------------------------------------------------------------------------- /C2FFMPEGVideoDecodeInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/C2FFMPEGVideoDecodeInterface.h -------------------------------------------------------------------------------- /android.hardware.media.c2-ffmpeg-extended-seccomp_policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/android.hardware.media.c2-ffmpeg-extended-seccomp_policy -------------------------------------------------------------------------------- /android.hardware.media.c2-service-ffmpeg.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/android.hardware.media.c2-service-ffmpeg.rc -------------------------------------------------------------------------------- /android.hardware.media.c2-service-ffmpeg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/android.hardware.media.c2-service-ffmpeg.xml -------------------------------------------------------------------------------- /apex_file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/apex_file_contexts -------------------------------------------------------------------------------- /apex_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/apex_manifest.json -------------------------------------------------------------------------------- /ffmpeg_utils/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/ffmpeg_utils/Android.bp -------------------------------------------------------------------------------- /ffmpeg_utils/ffmpeg_hwaccel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/ffmpeg_utils/ffmpeg_hwaccel.c -------------------------------------------------------------------------------- /ffmpeg_utils/ffmpeg_hwaccel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/ffmpeg_utils/ffmpeg_hwaccel.h -------------------------------------------------------------------------------- /ffmpeg_utils/ffmpeg_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/ffmpeg_utils/ffmpeg_utils.cpp -------------------------------------------------------------------------------- /ffmpeg_utils/ffmpeg_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/ffmpeg_utils/ffmpeg_utils.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberry-vanilla/android_external_ffmpeg_codec2/HEAD/main.cpp --------------------------------------------------------------------------------