gitextract_ua023m8r/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── asm/ │ ├── minih264e_asm.h │ └── neon/ │ ├── h264e_cavlc_arm11.s │ ├── h264e_deblock_neon.s │ ├── h264e_denoise_neon.s │ ├── h264e_intra_neon.s │ ├── h264e_qpel_neon.s │ ├── h264e_sad_neon.s │ └── h264e_transform_neon.s ├── minih264e.h ├── minih264e_test.c ├── scripts/ │ ├── build_arm.sh │ ├── build_arm_clang.sh │ ├── build_x86.sh │ ├── build_x86_clang.sh │ ├── profile.sh │ └── test.sh ├── system.c ├── system.h └── vectors/ ├── foreman.cif ├── out_ref.264 └── x264.264