├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── CMakeLists.txt ├── LICENCE ├── README.md ├── containers ├── CMakeLists.txt ├── asf │ ├── CMakeLists.txt │ ├── asf_reader.c │ └── asf_writer.c ├── avi │ ├── CMakeLists.txt │ ├── avi_reader.c │ └── avi_writer.c ├── binary │ ├── CMakeLists.txt │ ├── binary_reader.c │ └── binary_writer.c ├── containers.h ├── containers_codecs.h ├── containers_types.h ├── core │ ├── containers.c │ ├── containers_bits.c │ ├── containers_bits.h │ ├── containers_bytestream.h │ ├── containers_codecs.c │ ├── containers_common.h │ ├── containers_filters.c │ ├── containers_filters.h │ ├── containers_index.c │ ├── containers_index.h │ ├── containers_io.c │ ├── containers_io.h │ ├── containers_io_helpers.c │ ├── containers_io_helpers.h │ ├── containers_list.c │ ├── containers_list.h │ ├── containers_loader.c │ ├── containers_loader.h │ ├── containers_logging.c │ ├── containers_logging.h │ ├── containers_private.h │ ├── containers_time.h │ ├── containers_uri.c │ ├── containers_uri.h │ ├── containers_utils.c │ ├── containers_utils.h │ ├── containers_waveformat.h │ ├── containers_writer_utils.c │ ├── containers_writer_utils.h │ ├── packetizers.c │ └── packetizers_private.h ├── dummy │ ├── CMakeLists.txt │ └── dummy_writer.c ├── flash │ ├── CMakeLists.txt │ └── flv_reader.c ├── h264 │ └── avc1_packetizer.c ├── io │ ├── io_file.c │ ├── io_http.c │ ├── io_net.c │ ├── io_null.c │ └── io_pktfile.c ├── metadata │ └── id3 │ │ ├── CMakeLists.txt │ │ ├── id3_metadata_reader.c │ │ └── id3_metadata_strings.h ├── mkv │ ├── CMakeLists.txt │ └── matroska_reader.c ├── mp4 │ ├── CMakeLists.txt │ ├── mp4_common.h │ ├── mp4_reader.c │ └── mp4_writer.c ├── mpeg │ ├── CMakeLists.txt │ └── ps_reader.c ├── mpga │ ├── CMakeLists.txt │ ├── mpga_common.h │ ├── mpga_packetizer.c │ └── mpga_reader.c ├── mpgv │ └── mpgv_packetizer.c ├── net │ ├── net_sockets.h │ ├── net_sockets_bsd.c │ ├── net_sockets_bsd.h │ ├── net_sockets_common.c │ ├── net_sockets_null.c │ ├── net_sockets_priv.h │ ├── net_sockets_win32.c │ └── net_sockets_win32.h ├── packetizers.h ├── pcm │ └── pcm_packetizer.c ├── qsynth │ ├── CMakeLists.txt │ └── qsynth_reader.c ├── raw │ ├── CMakeLists.txt │ ├── raw_video_common.h │ ├── raw_video_reader.c │ └── raw_video_writer.c ├── rcv │ ├── CMakeLists.txt │ └── rcv_reader.c ├── rtp │ ├── CMakeLists.txt │ ├── rtp_base64.c │ ├── rtp_base64.h │ ├── rtp_h264.c │ ├── rtp_h264.h │ ├── rtp_mpeg4.c │ ├── rtp_mpeg4.h │ ├── rtp_priv.h │ └── rtp_reader.c ├── rtsp │ ├── CMakeLists.txt │ └── rtsp_reader.c ├── rv9 │ ├── CMakeLists.txt │ └── rv9_reader.c ├── simple │ ├── CMakeLists.txt │ ├── simple_common.h │ ├── simple_reader.c │ └── simple_writer.c ├── test │ ├── CMakeLists.txt │ ├── autotest.cpp │ ├── check_frame_int.c │ ├── crc_32.c │ ├── datagram_receiver.c │ ├── datagram_sender.c │ ├── dump_pktfile.c │ ├── nb_io.h │ ├── nb_io_unix.c │ ├── nb_io_win32.c │ ├── rtp_decoder.c │ ├── stream_client.c │ ├── stream_server.c │ ├── test.c │ ├── test_bits.c │ ├── test_uri.c │ └── uri_pipe.c └── wav │ ├── CMakeLists.txt │ └── wav_reader.c ├── helpers ├── dtoverlay │ ├── CMakeLists.txt │ ├── dtoverlay.c │ └── dtoverlay.h ├── v3d │ ├── v3d_common.h │ └── v3d_ver.h └── vc_image │ ├── metadata_fourcc.h │ ├── vc_image.h │ ├── vc_image_helper.h │ └── vc_image_metadata.h ├── host_applications ├── android │ └── apps │ │ └── vidtex │ │ ├── CMakeLists.txt │ │ ├── applog.h │ │ ├── launcher.h │ │ ├── launcher_rpi.c │ │ ├── launcher_rpi.h │ │ ├── main.cpp │ │ ├── svp.c │ │ ├── svp.h │ │ ├── vidtex.c │ │ └── vidtex.h ├── framework │ └── common │ │ ├── host_ilcore.h │ │ └── ilcore.c ├── linux │ ├── CMakeLists.txt │ ├── apps │ │ ├── dtmerge │ │ │ ├── CMakeLists.txt │ │ │ └── dtmerge.c │ │ ├── dtoverlay │ │ │ ├── CMakeLists.txt │ │ │ ├── dtoverlay-post │ │ │ ├── dtoverlay-pre │ │ │ ├── dtoverlay_main.c │ │ │ ├── utils.c │ │ │ └── utils.h │ │ ├── gencmd │ │ │ ├── CMakeLists.txt │ │ │ └── gencmd.c │ │ ├── hello_pi │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.include │ │ │ ├── README │ │ │ ├── hello_audio │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── audio.c │ │ │ │ ├── audioplay.h │ │ │ │ └── sinewave.c │ │ │ ├── hello_dispmanx │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── dispmanx.c │ │ │ ├── hello_encode │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── encode.c │ │ │ ├── hello_fft │ │ │ │ ├── gpu_fft.c │ │ │ │ ├── gpu_fft.h │ │ │ │ ├── gpu_fft.txt │ │ │ │ ├── gpu_fft_base.c │ │ │ │ ├── gpu_fft_shaders.c │ │ │ │ ├── gpu_fft_trans.c │ │ │ │ ├── gpu_fft_trans.h │ │ │ │ ├── gpu_fft_twiddles.c │ │ │ │ ├── hello_fft.c │ │ │ │ ├── hello_fft_2d.c │ │ │ │ ├── hello_fft_2d_bitmap.h │ │ │ │ ├── hex │ │ │ │ │ ├── shader_1024k.hex │ │ │ │ │ ├── shader_128k.hex │ │ │ │ │ ├── shader_16k.hex │ │ │ │ │ ├── shader_1k.hex │ │ │ │ │ ├── shader_2048k.hex │ │ │ │ │ ├── shader_256.hex │ │ │ │ │ ├── shader_256k.hex │ │ │ │ │ ├── shader_2k.hex │ │ │ │ │ ├── shader_32k.hex │ │ │ │ │ ├── shader_4096k.hex │ │ │ │ │ ├── shader_4k.hex │ │ │ │ │ ├── shader_512.hex │ │ │ │ │ ├── shader_512k.hex │ │ │ │ │ ├── shader_64k.hex │ │ │ │ │ ├── shader_8k.hex │ │ │ │ │ └── shader_trans.hex │ │ │ │ ├── mailbox.c │ │ │ │ ├── mailbox.h │ │ │ │ ├── makefile │ │ │ │ └── qasm │ │ │ │ │ ├── gpu_fft.qinc │ │ │ │ │ ├── gpu_fft_1024k.qasm │ │ │ │ │ ├── gpu_fft_128k.qasm │ │ │ │ │ ├── gpu_fft_16k.qasm │ │ │ │ │ ├── gpu_fft_1k.qasm │ │ │ │ │ ├── gpu_fft_2048k.qasm │ │ │ │ │ ├── gpu_fft_2048k.qinc │ │ │ │ │ ├── gpu_fft_256.qasm │ │ │ │ │ ├── gpu_fft_256k.qasm │ │ │ │ │ ├── gpu_fft_2k.qasm │ │ │ │ │ ├── gpu_fft_32k.qasm │ │ │ │ │ ├── gpu_fft_4096k.qasm │ │ │ │ │ ├── gpu_fft_4k.qasm │ │ │ │ │ ├── gpu_fft_512.qasm │ │ │ │ │ ├── gpu_fft_512k.qasm │ │ │ │ │ ├── gpu_fft_64k.qasm │ │ │ │ │ ├── gpu_fft_8k.qasm │ │ │ │ │ ├── gpu_fft_ex.qinc │ │ │ │ │ └── gpu_fft_trans.qasm │ │ │ ├── hello_font │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── Vera.ttf │ │ │ │ └── main.c │ │ │ ├── hello_jpeg │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── jpeg.c │ │ │ │ └── jpeg.h │ │ │ ├── hello_mmal_encode │ │ │ │ ├── Makefile │ │ │ │ └── mmal_encode.c │ │ │ ├── hello_teapot │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── cube_texture_and_coords.h │ │ │ │ ├── models.c │ │ │ │ ├── models.h │ │ │ │ ├── teapot.obj.dat │ │ │ │ ├── triangle.c │ │ │ │ ├── triangle.h │ │ │ │ └── video.c │ │ │ ├── hello_tiger │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── license.txt │ │ │ │ ├── main.c │ │ │ │ ├── readme.txt │ │ │ │ ├── tiger.c │ │ │ │ └── tiger.h │ │ │ ├── hello_triangle │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Djenne_128_128.raw │ │ │ │ ├── Gaudi_128_128.raw │ │ │ │ ├── Lucca_128_128.raw │ │ │ │ ├── Makefile │ │ │ │ ├── cube_texture_and_coords.h │ │ │ │ └── triangle.c │ │ │ ├── hello_triangle2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── triangle2.c │ │ │ ├── hello_video │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── test.h264 │ │ │ │ └── video.c │ │ │ ├── hello_videocube │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── cube_texture_and_coords.h │ │ │ │ ├── triangle.c │ │ │ │ ├── triangle.h │ │ │ │ └── video.c │ │ │ ├── hello_world │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── world.c │ │ │ ├── i420toh264 │ │ │ │ ├── 1640x1232.fine_crosshair_1200.c │ │ │ │ ├── 1640x1232.fine_crosshair_1200.pgm │ │ │ │ ├── 1640x922.circle900.c │ │ │ │ ├── 1640x922.circle900.pgm │ │ │ │ ├── 1640x922.circle900.pgm.png │ │ │ │ ├── 1640x922.fine_crosshair_900.c │ │ │ │ ├── 1640x922.fine_crosshair_900.pgm │ │ │ │ ├── 1640x922.fine_crosshair_900.pgm.png │ │ │ │ ├── 480x180.90fps_dbl_roi.png │ │ │ │ ├── 640x480.90fps_full.png │ │ │ │ ├── 640x480.fine_crosshair_450.c │ │ │ │ ├── 640x480.fine_crosshair_450.pgm │ │ │ │ ├── 640x480.fine_crosshair_450.pgm.png │ │ │ │ ├── Arduino-PID-Library │ │ │ │ │ ├── PID_v1.cpp │ │ │ │ │ ├── PID_v1.h │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── PID_AdaptiveTunings │ │ │ │ │ │ │ └── PID_AdaptiveTunings.ino │ │ │ │ │ │ ├── PID_Basic │ │ │ │ │ │ │ └── PID_Basic.ino │ │ │ │ │ │ ├── PID_PonM │ │ │ │ │ │ │ └── PID_PonM.ino │ │ │ │ │ │ └── PID_RelayOutput │ │ │ │ │ │ │ └── PID_RelayOutput.ino │ │ │ │ │ ├── keywords.txt │ │ │ │ │ ├── library.json │ │ │ │ │ └── library.properties │ │ │ │ ├── Arduino.cpp │ │ │ │ ├── Arduino.h │ │ │ │ ├── Makefile │ │ │ │ ├── PID_test.cpp │ │ │ │ ├── README.md │ │ │ │ ├── YUV_frame.png │ │ │ │ ├── advanced.diagram.png │ │ │ │ ├── airplane.200.anim.gif │ │ │ │ ├── day.yuv.bz2 │ │ │ │ ├── encode.c │ │ │ │ ├── frame_alpha.anim.gif │ │ │ │ ├── frame_circle.png │ │ │ │ ├── frame_full.fine_crosshair.png │ │ │ │ ├── frame_full.png │ │ │ │ ├── i420toh264 │ │ │ │ ├── pi.uln2003.anim.gif │ │ │ │ ├── sample_laserBeam.c │ │ │ │ ├── sample_yuv2grey.c │ │ │ │ ├── sample_yuv_airplane.2.c │ │ │ │ ├── sample_yuv_airplane.c │ │ │ │ ├── sample_yuv_alpha.c │ │ │ │ ├── sample_yuv_brightness.c │ │ │ │ ├── sample_yuv_dbl_roi.c │ │ │ │ ├── sample_yuv_pts.c │ │ │ │ └── steppers.P.simple.anim.gif │ │ │ ├── i420view │ │ │ │ ├── Makefile │ │ │ │ └── dispmanx.c │ │ │ ├── libs │ │ │ │ ├── ilclient │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ilclient.c │ │ │ │ │ ├── ilclient.h │ │ │ │ │ └── ilcore.c │ │ │ │ ├── revision │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── revision.c │ │ │ │ │ └── revision.h │ │ │ │ └── vgfont │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── font.c │ │ │ │ │ ├── graphics.c │ │ │ │ │ ├── graphics_x_private.h │ │ │ │ │ ├── vgfont.h │ │ │ │ │ ├── vgft.c │ │ │ │ │ └── vgft.h │ │ │ └── rebuild.sh │ │ ├── raspicam │ │ │ ├── CMakeLists.txt │ │ │ ├── Doxyfile │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── RaspiCLI.c │ │ │ ├── RaspiCLI.h │ │ │ ├── RaspiCamControl.c │ │ │ ├── RaspiCamControl.h │ │ │ ├── RaspiCommonSettings.c │ │ │ ├── RaspiCommonSettings.h │ │ │ ├── RaspiGPS.c │ │ │ ├── RaspiGPS.h │ │ │ ├── RaspiHelpers.c │ │ │ ├── RaspiHelpers.h │ │ │ ├── RaspiPreview.c │ │ │ ├── RaspiPreview.h │ │ │ ├── RaspiStill.c │ │ │ ├── RaspiStillYUV.c │ │ │ ├── RaspiTex.c │ │ │ ├── RaspiTex.h │ │ │ ├── RaspiTexStub.c │ │ │ ├── RaspiTexUtil.c │ │ │ ├── RaspiTexUtil.h │ │ │ ├── RaspiVid.c │ │ │ ├── RaspiVidYUV.c │ │ │ ├── gl_scenes │ │ │ │ ├── cube_texture_and_coords.h │ │ │ │ ├── mirror.c │ │ │ │ ├── mirror.h │ │ │ │ ├── models.c │ │ │ │ ├── models.h │ │ │ │ ├── sobel.c │ │ │ │ ├── sobel.h │ │ │ │ ├── square.c │ │ │ │ ├── square.h │ │ │ │ ├── teapot.c │ │ │ │ ├── teapot.h │ │ │ │ ├── vcsm_square.c │ │ │ │ ├── vcsm_square.h │ │ │ │ ├── yuv.c │ │ │ │ └── yuv.h │ │ │ ├── gps.h │ │ │ ├── imv_examples │ │ │ │ ├── README.md │ │ │ │ ├── imv2pgm.c │ │ │ │ ├── imv2txt.c │ │ │ │ └── plot.par │ │ │ ├── libgps_loader.c │ │ │ ├── libgps_loader.h │ │ │ ├── tga.c │ │ │ └── tga.h │ │ ├── smem │ │ │ ├── CMakeLists.txt │ │ │ └── smem.c │ │ ├── tvservice │ │ │ ├── CMakeLists.txt │ │ │ └── tvservice.c │ │ └── vcmailbox │ │ │ ├── CMakeLists.txt │ │ │ └── vcmailbox.c │ ├── kernel_headers │ │ └── vmcs_sm_ioctl.h │ └── libs │ │ ├── bcm_host │ │ ├── CMakeLists.txt │ │ ├── bcm_host.c │ │ └── include │ │ │ └── bcm_host.h │ │ ├── debug_sym │ │ ├── CMakeLists.txt │ │ ├── debug_sym.c │ │ └── debug_sym.h │ │ └── sm │ │ ├── CMakeLists.txt │ │ ├── dma-buf.h │ │ ├── user-vcsm.c │ │ ├── user-vcsm.h │ │ └── vc_sm_cma_ioctl.h └── vmcs │ ├── test_apps │ ├── mmalcam │ │ ├── Makefile │ │ ├── mmalcam.c │ │ ├── mmalcam.h │ │ └── viewfinder.c │ └── mmalplay │ │ ├── Makefile │ │ ├── mmalplay.c │ │ ├── mmalplay.h │ │ └── playback.c │ └── vmcs_config.h.in ├── host_support └── include │ ├── vc_debug_sym.h │ └── vc_mem.h ├── interface ├── khronos │ ├── CMakeLists.txt │ ├── common │ │ ├── abstract │ │ │ └── khrn_client_platform_filler_abstract.h │ │ ├── direct │ │ │ └── khrn_client_platform_filler_direct.h │ │ ├── khrn_client.c │ │ ├── khrn_client.h │ │ ├── khrn_client_cache.c │ │ ├── khrn_client_cache.h │ │ ├── khrn_client_check_types.h │ │ ├── khrn_client_cr.c │ │ ├── khrn_client_global_image_map.c │ │ ├── khrn_client_global_image_map.h │ │ ├── khrn_client_mangle.h │ │ ├── khrn_client_platform.h │ │ ├── khrn_client_pointermap.c │ │ ├── khrn_client_pointermap.h │ │ ├── khrn_client_rpc.h │ │ ├── khrn_client_unmangle.h │ │ ├── khrn_client_vector.c │ │ ├── khrn_client_vector.h │ │ ├── khrn_int_color.h │ │ ├── khrn_int_common.h │ │ ├── khrn_int_generic_map.c │ │ ├── khrn_int_generic_map.h │ │ ├── khrn_int_hash.c │ │ ├── khrn_int_hash.h │ │ ├── khrn_int_hash_asm.s │ │ ├── khrn_int_ids.h │ │ ├── khrn_int_image.c │ │ ├── khrn_int_image.h │ │ ├── khrn_int_math.h │ │ ├── khrn_int_misc_impl.h │ │ ├── khrn_int_util.c │ │ ├── khrn_int_util.h │ │ ├── khrn_int_util_cr.h │ │ ├── khrn_options.c │ │ ├── khrn_options.h │ │ ├── linux │ │ │ ├── khrn_client_platform_linux.c │ │ │ └── khrn_client_rpc_linux.c │ │ ├── openwfc │ │ │ └── khrn_client_platform_openwfc.c │ │ ├── vcos │ │ │ └── khrn_client_platform_filler_vcos.h │ │ └── vcos_vchiq │ │ │ └── khrn_client_platform_filler_vcos_vchiq.h │ ├── egl │ │ ├── egl_client.c │ │ ├── egl_client_config.c │ │ ├── egl_client_config.h │ │ ├── egl_client_config_cr.c │ │ ├── egl_client_context.c │ │ ├── egl_client_context.h │ │ ├── egl_client_cr.c │ │ ├── egl_client_get_proc.c │ │ ├── egl_client_surface.c │ │ ├── egl_client_surface.h │ │ ├── egl_int.h │ │ ├── egl_int_config.h │ │ └── egl_int_impl.h │ ├── ext │ │ ├── egl_brcm_driver_monitor_client.c │ │ ├── egl_brcm_driver_monitor_client.h │ │ ├── egl_brcm_flush_client.c │ │ ├── egl_brcm_global_image_client.c │ │ ├── egl_brcm_perf_monitor_client.c │ │ ├── egl_brcm_perf_monitor_client.h │ │ ├── egl_khr_image_client.c │ │ ├── egl_khr_lock_surface_client.c │ │ ├── egl_khr_sync_client.c │ │ ├── egl_khr_sync_client.h │ │ ├── egl_openmaxil_client.c │ │ ├── egl_openmaxil_client.h │ │ ├── ext_gl_debug_marker.c │ │ ├── gl_oes_draw_texture_client.c │ │ ├── gl_oes_egl_image_client.c │ │ ├── gl_oes_framebuffer_object.c │ │ ├── gl_oes_map_buffer.c │ │ ├── gl_oes_matrix_palette_client.c │ │ └── gl_oes_query_matrix_client.c │ ├── glxx │ │ ├── gl11_int_config.h │ │ ├── gl11_int_impl.h │ │ ├── gl20_int_impl.h │ │ ├── glxx_client.c │ │ ├── glxx_client.h │ │ ├── glxx_int_attrib.h │ │ ├── glxx_int_config.h │ │ └── glxx_int_impl.h │ ├── include │ │ ├── EGL │ │ │ ├── egl.h │ │ │ ├── eglext.h │ │ │ ├── eglext_android.h │ │ │ ├── eglext_brcm.h │ │ │ ├── eglext_nvidia.h │ │ │ └── eglplatform.h │ │ ├── GLES │ │ │ ├── gl.h │ │ │ ├── glext.h │ │ │ └── glplatform.h │ │ ├── GLES2 │ │ │ ├── gl2.h │ │ │ ├── gl2ext.h │ │ │ └── gl2platform.h │ │ ├── KHR │ │ │ └── khrplatform.h │ │ ├── VG │ │ │ ├── openvg.h │ │ │ ├── vgext.h │ │ │ ├── vgplatform.h │ │ │ └── vgu.h │ │ └── WF │ │ │ ├── wfc.h │ │ │ └── wfcplatform.h │ ├── vg │ │ ├── vg_client.c │ │ ├── vg_client.h │ │ ├── vg_int.h │ │ ├── vg_int_config.h │ │ ├── vg_int_impl.h │ │ ├── vg_int_mat3x3.c │ │ ├── vg_int_mat3x3.h │ │ └── vg_int_util.h │ └── wf │ │ ├── wfc_client.c │ │ ├── wfc_client_ipc.c │ │ ├── wfc_client_ipc.h │ │ ├── wfc_client_server_api.c │ │ ├── wfc_client_stream.c │ │ ├── wfc_client_stream.h │ │ ├── wfc_int.h │ │ ├── wfc_ipc.h │ │ └── wfc_server_api.h ├── mmal │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── brcmjpeg │ │ │ ├── CMakeLists.txt │ │ │ ├── brcmjpeg.c │ │ │ ├── brcmjpeg.h │ │ │ └── brcmjpeg_test.c │ ├── components │ │ ├── CMakeLists.txt │ │ ├── aaf_audio_render.cpp │ │ ├── aggregator.c │ │ ├── android_media_codec.cpp │ │ ├── artificial_camera.c │ │ ├── avcodec_audio_decoder.c │ │ ├── avcodec_video_decoder.c │ │ ├── clock.c │ │ ├── container_reader.c │ │ ├── copy.c │ │ ├── null_sink.c │ │ ├── passthrough.c │ │ ├── scheduler.c │ │ ├── sdl_audio_render.c │ │ ├── sdl_video_render.c │ │ ├── spdif.c │ │ └── splitter.c │ ├── core │ │ ├── CMakeLists.txt │ │ ├── mmal_buffer.c │ │ ├── mmal_buffer_private.h │ │ ├── mmal_clock.c │ │ ├── mmal_clock_private.h │ │ ├── mmal_component.c │ │ ├── mmal_component_private.h │ │ ├── mmal_core_private.h │ │ ├── mmal_events.c │ │ ├── mmal_events_private.h │ │ ├── mmal_format.c │ │ ├── mmal_logging.c │ │ ├── mmal_pool.c │ │ ├── mmal_port.c │ │ ├── mmal_port_clock.c │ │ ├── mmal_port_private.h │ │ └── mmal_queue.c │ ├── mmal.h │ ├── mmal_buffer.h │ ├── mmal_clock.h │ ├── mmal_common.h │ ├── mmal_component.h │ ├── mmal_encodings.h │ ├── mmal_events.h │ ├── mmal_format.h │ ├── mmal_logging.h │ ├── mmal_parameters.h │ ├── mmal_parameters_audio.h │ ├── mmal_parameters_camera.h │ ├── mmal_parameters_clock.h │ ├── mmal_parameters_common.h │ ├── mmal_parameters_video.h │ ├── mmal_pool.h │ ├── mmal_port.h │ ├── mmal_queue.h │ ├── mmal_types.h │ ├── openmaxil │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── mmalomx.h │ │ ├── mmalomx_buffer.c │ │ ├── mmalomx_buffer.h │ │ ├── mmalomx_commands.c │ │ ├── mmalomx_commands.h │ │ ├── mmalomx_core.c │ │ ├── mmalomx_logging.c │ │ ├── mmalomx_logging.h │ │ ├── mmalomx_marks.c │ │ ├── mmalomx_marks.h │ │ ├── mmalomx_parameters.c │ │ ├── mmalomx_parameters.h │ │ ├── mmalomx_registry.c │ │ ├── mmalomx_registry.h │ │ ├── mmalomx_roles.c │ │ ├── mmalomx_roles.h │ │ ├── mmalomx_util_params.c │ │ ├── mmalomx_util_params.h │ │ ├── mmalomx_util_params_audio.c │ │ ├── mmalomx_util_params_camera.c │ │ ├── mmalomx_util_params_common.h │ │ ├── mmalomx_util_params_misc.c │ │ └── mmalomx_util_params_video.c │ ├── test │ │ ├── CMakeLists.txt │ │ └── examples │ │ │ ├── example_basic_1.c │ │ │ ├── example_basic_2.c │ │ │ ├── example_connections.c │ │ │ └── example_graph.c │ ├── util │ │ ├── CMakeLists.txt │ │ ├── mmal_component_wrapper.c │ │ ├── mmal_component_wrapper.h │ │ ├── mmal_connection.c │ │ ├── mmal_connection.h │ │ ├── mmal_default_components.h │ │ ├── mmal_graph.c │ │ ├── mmal_graph.h │ │ ├── mmal_il.c │ │ ├── mmal_il.h │ │ ├── mmal_list.c │ │ ├── mmal_list.h │ │ ├── mmal_param_convert.c │ │ ├── mmal_param_convert.h │ │ ├── mmal_util.c │ │ ├── mmal_util.h │ │ ├── mmal_util_params.c │ │ ├── mmal_util_params.h │ │ ├── mmal_util_rational.c │ │ └── mmal_util_rational.h │ └── vc │ │ ├── CMakeLists.txt │ │ ├── mmal_vc_api.c │ │ ├── mmal_vc_api.h │ │ ├── mmal_vc_api_drm.c │ │ ├── mmal_vc_api_drm.h │ │ ├── mmal_vc_client.c │ │ ├── mmal_vc_client_priv.h │ │ ├── mmal_vc_dbglog.h │ │ ├── mmal_vc_diag.c │ │ ├── mmal_vc_msgnames.c │ │ ├── mmal_vc_msgnames.h │ │ ├── mmal_vc_msgs.h │ │ ├── mmal_vc_opaque_alloc.c │ │ ├── mmal_vc_opaque_alloc.h │ │ ├── mmal_vc_shm.c │ │ └── mmal_vc_shm.h ├── peer │ └── vc_vchi_dispmanx_common.h ├── vchi │ ├── common │ │ └── endian.h │ ├── connections │ │ └── connection.h │ ├── message_drivers │ │ └── message.h │ ├── vchi.h │ ├── vchi_cfg.h │ ├── vchi_cfg_internal.h │ ├── vchi_common.h │ └── vchi_mh.h ├── vchiq_arm │ ├── CMakeLists.txt │ ├── vchiq.h │ ├── vchiq_cfg.h │ ├── vchiq_if.h │ ├── vchiq_ioctl.h │ ├── vchiq_lib.c │ ├── vchiq_test.c │ ├── vchiq_test.h │ ├── vchiq_test_if.h │ ├── vchiq_util.c │ └── vchiq_util.h ├── vcos │ ├── CMakeLists.txt │ ├── generic │ │ ├── CMakeLists.txt │ │ ├── vcos_abort.c │ │ ├── vcos_cmd.c │ │ ├── vcos_common.h │ │ ├── vcos_deprecated.h │ │ ├── vcos_generic_blockpool.c │ │ ├── vcos_generic_blockpool.h │ │ ├── vcos_generic_event_flags.c │ │ ├── vcos_generic_event_flags.h │ │ ├── vcos_generic_named_sem.c │ │ ├── vcos_generic_named_sem.h │ │ ├── vcos_generic_quickslow_mutex.h │ │ ├── vcos_generic_reentrant_mtx.c │ │ ├── vcos_generic_reentrant_mtx.h │ │ ├── vcos_generic_safe_string.c │ │ ├── vcos_generic_tls.h │ │ ├── vcos_init.c │ │ ├── vcos_joinable_thread_from_plain.h │ │ ├── vcos_latch_from_sem.h │ │ ├── vcos_logcat.c │ │ ├── vcos_mem_from_malloc.c │ │ ├── vcos_mem_from_malloc.h │ │ ├── vcos_msgqueue.c │ │ ├── vcos_mutexes_are_reentrant.h │ │ └── vcos_thread_reaper.h │ ├── glibc │ │ └── vcos_backtrace.c │ ├── pthreads │ │ ├── CMakeLists.txt │ │ ├── vcos_dlfcn.c │ │ ├── vcos_futex_mutex.h │ │ ├── vcos_platform.h │ │ ├── vcos_platform_types.h │ │ └── vcos_pthreads.c │ ├── user_nodefs.h │ ├── vcos.h │ ├── vcos_assert.h │ ├── vcos_atomic_flags.h │ ├── vcos_attr.h │ ├── vcos_blockpool.h │ ├── vcos_build_info.h │ ├── vcos_cfg.h │ ├── vcos_cmd.h │ ├── vcos_ctype.h │ ├── vcos_dlfcn.h │ ├── vcos_event.h │ ├── vcos_event_flags.h │ ├── vcos_init.h │ ├── vcos_inttypes.h │ ├── vcos_isr.h │ ├── vcos_legacy_isr.h │ ├── vcos_logging.h │ ├── vcos_logging_control.h │ ├── vcos_lowlevel_thread.h │ ├── vcos_mem.h │ ├── vcos_mempool.h │ ├── vcos_msgqueue.h │ ├── vcos_mutex.h │ ├── vcos_named_semaphore.h │ ├── vcos_once.h │ ├── vcos_queue.h │ ├── vcos_quickslow_mutex.h │ ├── vcos_reentrant_mutex.h │ ├── vcos_semaphore.h │ ├── vcos_stdbool.h │ ├── vcos_stdint.h │ ├── vcos_string.h │ ├── vcos_thread.h │ ├── vcos_thread_attr.h │ ├── vcos_timer.h │ ├── vcos_tls.h │ └── vcos_types.h ├── vctypes │ ├── vc_display_types.h │ ├── vc_image_structs.h │ └── vc_image_types.h └── vmcs_host │ ├── CMakeLists.txt │ ├── khronos │ └── IL │ │ ├── OMX_Audio.h │ │ ├── OMX_Broadcom.h │ │ ├── OMX_Component.h │ │ ├── OMX_Core.h │ │ ├── OMX_ILCS.h │ │ ├── OMX_IVCommon.h │ │ ├── OMX_Image.h │ │ ├── OMX_Index.h │ │ ├── OMX_Other.h │ │ ├── OMX_Types.h │ │ └── OMX_Video.h │ ├── linux │ ├── vcfiled │ │ ├── vcfiled_check.c │ │ └── vcfiled_check.h │ ├── vcfilesys.c │ ├── vchost_config.h │ └── vcmisc.c │ ├── vc_cec.h │ ├── vc_cecservice.h │ ├── vc_cecservice_defs.h │ ├── vc_cma.h │ ├── vc_dispmanx.h │ ├── vc_dispmanx_types.h │ ├── vc_dispservice_defs.h │ ├── vc_dispservice_x_defs.h │ ├── vc_fileservice_defs.h │ ├── vc_gencmd_defs.h │ ├── vc_hdmi.h │ ├── vc_hdmi_property.h │ ├── vc_ilcs_defs.h │ ├── vc_imageconv_defs.h │ ├── vc_sdtv.h │ ├── vc_service_common.c │ ├── vc_service_common.h │ ├── vc_tvservice.h │ ├── vc_tvservice_defs.h │ ├── vc_vchi_audioserv_defs.h │ ├── vc_vchi_bufman.h │ ├── vc_vchi_bufman_defs.h │ ├── vc_vchi_cecservice.c │ ├── vc_vchi_dispmanx.c │ ├── vc_vchi_dispmanx.h │ ├── vc_vchi_fileservice_defs.h │ ├── vc_vchi_filesys.c │ ├── vc_vchi_filesys.h │ ├── vc_vchi_gencmd.c │ ├── vc_vchi_gencmd.h │ ├── vc_vchi_gpuserv.c │ ├── vc_vchi_gpuserv.h │ ├── vc_vchi_tvservice.c │ ├── vcfilesys.h │ ├── vcfilesys_defs.h │ ├── vcgencmd.h │ ├── vchost.h │ ├── vchost_platform_config.h │ ├── vcilcs.c │ ├── vcilcs.h │ ├── vcilcs_common.c │ ├── vcilcs_common.h │ ├── vcilcs_in.c │ └── vcilcs_out.c ├── makefiles └── cmake │ ├── arm-linux.cmake │ ├── cmake_config.h.in │ ├── global_settings.cmake │ ├── srcs │ └── test-mtrace.c │ ├── toolchains │ ├── aarch64-linux-gnu.cmake │ ├── arm-linux-gnueabihf.cmake │ └── bcm2708-glibc-linux.cmake │ └── vmcs.cmake ├── middleware ├── dlloader │ └── dlfcn.h ├── imageconv │ └── imageconv.h ├── khronos │ ├── common │ │ ├── 2708 │ │ │ ├── khrn_interlock_filler_4.h │ │ │ └── khrn_prod_4.h │ │ ├── khrn_hw.h │ │ ├── khrn_image.h │ │ ├── khrn_interlock.h │ │ ├── khrn_map.h │ │ ├── khrn_mem.h │ │ ├── khrn_misc.h │ │ ├── khrn_pid_map.h │ │ ├── khrn_pid_map_value.h │ │ └── khrn_server_pointermap.h │ ├── dispatch │ │ └── khrn_dispatch.h │ ├── egl │ │ ├── egl_disp.h │ │ └── egl_server.h │ ├── ext │ │ └── egl_khr_image.h │ ├── vg │ │ ├── 2708 │ │ │ └── vg_config_filler_4.h │ │ └── vg_image.h │ └── wf │ │ └── wfc_server_stream.h └── openmaxil │ └── CMakeLists.txt ├── opensrc └── helpers │ └── libfdt │ ├── CMakeLists.txt │ ├── fdt.c │ ├── fdt.h │ ├── fdt_empty_tree.c │ ├── fdt_ro.c │ ├── fdt_rw.c │ ├── fdt_strerror.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ ├── libfdt.h │ ├── libfdt_env.h │ └── libfdt_internal.h ├── pkgconfig ├── bcm_host.pc.in ├── brcmegl.pc.in ├── brcmglesv2.pc.in ├── brcmvg.pc.in ├── mmal.pc.in └── vcsm.pc.in ├── vcfw ├── drivers │ └── driver.h ├── logging │ └── logging.h ├── rtos │ ├── common │ │ └── rtos_common_mem.h │ └── rtos.h └── vclib │ └── vclib.h └── vcinclude ├── common.h ├── vc_image_types.h └── vcore.h /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/README.md -------------------------------------------------------------------------------- /containers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/CMakeLists.txt -------------------------------------------------------------------------------- /containers/asf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/asf/CMakeLists.txt -------------------------------------------------------------------------------- /containers/asf/asf_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/asf/asf_reader.c -------------------------------------------------------------------------------- /containers/asf/asf_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/asf/asf_writer.c -------------------------------------------------------------------------------- /containers/avi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/avi/CMakeLists.txt -------------------------------------------------------------------------------- /containers/avi/avi_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/avi/avi_reader.c -------------------------------------------------------------------------------- /containers/avi/avi_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/avi/avi_writer.c -------------------------------------------------------------------------------- /containers/binary/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/binary/CMakeLists.txt -------------------------------------------------------------------------------- /containers/binary/binary_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/binary/binary_reader.c -------------------------------------------------------------------------------- /containers/binary/binary_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/binary/binary_writer.c -------------------------------------------------------------------------------- /containers/containers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/containers.h -------------------------------------------------------------------------------- /containers/containers_codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/containers_codecs.h -------------------------------------------------------------------------------- /containers/containers_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/containers_types.h -------------------------------------------------------------------------------- /containers/core/containers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers.c -------------------------------------------------------------------------------- /containers/core/containers_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_bits.c -------------------------------------------------------------------------------- /containers/core/containers_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_bits.h -------------------------------------------------------------------------------- /containers/core/containers_bytestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_bytestream.h -------------------------------------------------------------------------------- /containers/core/containers_codecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_codecs.c -------------------------------------------------------------------------------- /containers/core/containers_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_common.h -------------------------------------------------------------------------------- /containers/core/containers_filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_filters.c -------------------------------------------------------------------------------- /containers/core/containers_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_filters.h -------------------------------------------------------------------------------- /containers/core/containers_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_index.c -------------------------------------------------------------------------------- /containers/core/containers_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_index.h -------------------------------------------------------------------------------- /containers/core/containers_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_io.c -------------------------------------------------------------------------------- /containers/core/containers_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_io.h -------------------------------------------------------------------------------- /containers/core/containers_io_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_io_helpers.c -------------------------------------------------------------------------------- /containers/core/containers_io_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_io_helpers.h -------------------------------------------------------------------------------- /containers/core/containers_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_list.c -------------------------------------------------------------------------------- /containers/core/containers_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_list.h -------------------------------------------------------------------------------- /containers/core/containers_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_loader.c -------------------------------------------------------------------------------- /containers/core/containers_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_loader.h -------------------------------------------------------------------------------- /containers/core/containers_logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_logging.c -------------------------------------------------------------------------------- /containers/core/containers_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_logging.h -------------------------------------------------------------------------------- /containers/core/containers_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_private.h -------------------------------------------------------------------------------- /containers/core/containers_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_time.h -------------------------------------------------------------------------------- /containers/core/containers_uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_uri.c -------------------------------------------------------------------------------- /containers/core/containers_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_uri.h -------------------------------------------------------------------------------- /containers/core/containers_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_utils.c -------------------------------------------------------------------------------- /containers/core/containers_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_utils.h -------------------------------------------------------------------------------- /containers/core/containers_waveformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_waveformat.h -------------------------------------------------------------------------------- /containers/core/containers_writer_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_writer_utils.c -------------------------------------------------------------------------------- /containers/core/containers_writer_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/containers_writer_utils.h -------------------------------------------------------------------------------- /containers/core/packetizers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/packetizers.c -------------------------------------------------------------------------------- /containers/core/packetizers_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/core/packetizers_private.h -------------------------------------------------------------------------------- /containers/dummy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/dummy/CMakeLists.txt -------------------------------------------------------------------------------- /containers/dummy/dummy_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/dummy/dummy_writer.c -------------------------------------------------------------------------------- /containers/flash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/flash/CMakeLists.txt -------------------------------------------------------------------------------- /containers/flash/flv_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/flash/flv_reader.c -------------------------------------------------------------------------------- /containers/h264/avc1_packetizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/h264/avc1_packetizer.c -------------------------------------------------------------------------------- /containers/io/io_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/io/io_file.c -------------------------------------------------------------------------------- /containers/io/io_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/io/io_http.c -------------------------------------------------------------------------------- /containers/io/io_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/io/io_net.c -------------------------------------------------------------------------------- /containers/io/io_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/io/io_null.c -------------------------------------------------------------------------------- /containers/io/io_pktfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/io/io_pktfile.c -------------------------------------------------------------------------------- /containers/metadata/id3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/metadata/id3/CMakeLists.txt -------------------------------------------------------------------------------- /containers/metadata/id3/id3_metadata_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/metadata/id3/id3_metadata_reader.c -------------------------------------------------------------------------------- /containers/metadata/id3/id3_metadata_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/metadata/id3/id3_metadata_strings.h -------------------------------------------------------------------------------- /containers/mkv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/mkv/CMakeLists.txt -------------------------------------------------------------------------------- /containers/mkv/matroska_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/mkv/matroska_reader.c -------------------------------------------------------------------------------- /containers/mp4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/mp4/CMakeLists.txt -------------------------------------------------------------------------------- /containers/mp4/mp4_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/mp4/mp4_common.h -------------------------------------------------------------------------------- /containers/mp4/mp4_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/mp4/mp4_reader.c -------------------------------------------------------------------------------- /containers/mp4/mp4_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/mp4/mp4_writer.c -------------------------------------------------------------------------------- /containers/mpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/mpeg/CMakeLists.txt -------------------------------------------------------------------------------- /containers/mpeg/ps_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/mpeg/ps_reader.c -------------------------------------------------------------------------------- /containers/mpga/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/mpga/CMakeLists.txt -------------------------------------------------------------------------------- /containers/mpga/mpga_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/mpga/mpga_common.h -------------------------------------------------------------------------------- /containers/mpga/mpga_packetizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/mpga/mpga_packetizer.c -------------------------------------------------------------------------------- /containers/mpga/mpga_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/mpga/mpga_reader.c -------------------------------------------------------------------------------- /containers/mpgv/mpgv_packetizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/mpgv/mpgv_packetizer.c -------------------------------------------------------------------------------- /containers/net/net_sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/net/net_sockets.h -------------------------------------------------------------------------------- /containers/net/net_sockets_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/net/net_sockets_bsd.c -------------------------------------------------------------------------------- /containers/net/net_sockets_bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/net/net_sockets_bsd.h -------------------------------------------------------------------------------- /containers/net/net_sockets_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/net/net_sockets_common.c -------------------------------------------------------------------------------- /containers/net/net_sockets_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/net/net_sockets_null.c -------------------------------------------------------------------------------- /containers/net/net_sockets_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/net/net_sockets_priv.h -------------------------------------------------------------------------------- /containers/net/net_sockets_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/net/net_sockets_win32.c -------------------------------------------------------------------------------- /containers/net/net_sockets_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/net/net_sockets_win32.h -------------------------------------------------------------------------------- /containers/packetizers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/packetizers.h -------------------------------------------------------------------------------- /containers/pcm/pcm_packetizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/pcm/pcm_packetizer.c -------------------------------------------------------------------------------- /containers/qsynth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/qsynth/CMakeLists.txt -------------------------------------------------------------------------------- /containers/qsynth/qsynth_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/qsynth/qsynth_reader.c -------------------------------------------------------------------------------- /containers/raw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/raw/CMakeLists.txt -------------------------------------------------------------------------------- /containers/raw/raw_video_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/raw/raw_video_common.h -------------------------------------------------------------------------------- /containers/raw/raw_video_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/raw/raw_video_reader.c -------------------------------------------------------------------------------- /containers/raw/raw_video_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/raw/raw_video_writer.c -------------------------------------------------------------------------------- /containers/rcv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/rcv/CMakeLists.txt -------------------------------------------------------------------------------- /containers/rcv/rcv_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/rcv/rcv_reader.c -------------------------------------------------------------------------------- /containers/rtp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/rtp/CMakeLists.txt -------------------------------------------------------------------------------- /containers/rtp/rtp_base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/rtp/rtp_base64.c -------------------------------------------------------------------------------- /containers/rtp/rtp_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/rtp/rtp_base64.h -------------------------------------------------------------------------------- /containers/rtp/rtp_h264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/rtp/rtp_h264.c -------------------------------------------------------------------------------- /containers/rtp/rtp_h264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/rtp/rtp_h264.h -------------------------------------------------------------------------------- /containers/rtp/rtp_mpeg4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/rtp/rtp_mpeg4.c -------------------------------------------------------------------------------- /containers/rtp/rtp_mpeg4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/rtp/rtp_mpeg4.h -------------------------------------------------------------------------------- /containers/rtp/rtp_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/rtp/rtp_priv.h -------------------------------------------------------------------------------- /containers/rtp/rtp_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/rtp/rtp_reader.c -------------------------------------------------------------------------------- /containers/rtsp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/rtsp/CMakeLists.txt -------------------------------------------------------------------------------- /containers/rtsp/rtsp_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/rtsp/rtsp_reader.c -------------------------------------------------------------------------------- /containers/rv9/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/rv9/CMakeLists.txt -------------------------------------------------------------------------------- /containers/rv9/rv9_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/rv9/rv9_reader.c -------------------------------------------------------------------------------- /containers/simple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/simple/CMakeLists.txt -------------------------------------------------------------------------------- /containers/simple/simple_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/simple/simple_common.h -------------------------------------------------------------------------------- /containers/simple/simple_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/simple/simple_reader.c -------------------------------------------------------------------------------- /containers/simple/simple_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/simple/simple_writer.c -------------------------------------------------------------------------------- /containers/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/CMakeLists.txt -------------------------------------------------------------------------------- /containers/test/autotest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/autotest.cpp -------------------------------------------------------------------------------- /containers/test/check_frame_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/check_frame_int.c -------------------------------------------------------------------------------- /containers/test/crc_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/crc_32.c -------------------------------------------------------------------------------- /containers/test/datagram_receiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/datagram_receiver.c -------------------------------------------------------------------------------- /containers/test/datagram_sender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/datagram_sender.c -------------------------------------------------------------------------------- /containers/test/dump_pktfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/dump_pktfile.c -------------------------------------------------------------------------------- /containers/test/nb_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/nb_io.h -------------------------------------------------------------------------------- /containers/test/nb_io_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/nb_io_unix.c -------------------------------------------------------------------------------- /containers/test/nb_io_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/nb_io_win32.c -------------------------------------------------------------------------------- /containers/test/rtp_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/rtp_decoder.c -------------------------------------------------------------------------------- /containers/test/stream_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/stream_client.c -------------------------------------------------------------------------------- /containers/test/stream_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/stream_server.c -------------------------------------------------------------------------------- /containers/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/test.c -------------------------------------------------------------------------------- /containers/test/test_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/test_bits.c -------------------------------------------------------------------------------- /containers/test/test_uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/test_uri.c -------------------------------------------------------------------------------- /containers/test/uri_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/test/uri_pipe.c -------------------------------------------------------------------------------- /containers/wav/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/wav/CMakeLists.txt -------------------------------------------------------------------------------- /containers/wav/wav_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/containers/wav/wav_reader.c -------------------------------------------------------------------------------- /helpers/dtoverlay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/helpers/dtoverlay/CMakeLists.txt -------------------------------------------------------------------------------- /helpers/dtoverlay/dtoverlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/helpers/dtoverlay/dtoverlay.c -------------------------------------------------------------------------------- /helpers/dtoverlay/dtoverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/helpers/dtoverlay/dtoverlay.h -------------------------------------------------------------------------------- /helpers/v3d/v3d_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/helpers/v3d/v3d_common.h -------------------------------------------------------------------------------- /helpers/v3d/v3d_ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/helpers/v3d/v3d_ver.h -------------------------------------------------------------------------------- /helpers/vc_image/metadata_fourcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/helpers/vc_image/metadata_fourcc.h -------------------------------------------------------------------------------- /helpers/vc_image/vc_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/helpers/vc_image/vc_image.h -------------------------------------------------------------------------------- /helpers/vc_image/vc_image_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/helpers/vc_image/vc_image_helper.h -------------------------------------------------------------------------------- /helpers/vc_image/vc_image_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/helpers/vc_image/vc_image_metadata.h -------------------------------------------------------------------------------- /host_applications/android/apps/vidtex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/android/apps/vidtex/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/android/apps/vidtex/applog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/android/apps/vidtex/applog.h -------------------------------------------------------------------------------- /host_applications/android/apps/vidtex/launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/android/apps/vidtex/launcher.h -------------------------------------------------------------------------------- /host_applications/android/apps/vidtex/launcher_rpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/android/apps/vidtex/launcher_rpi.c -------------------------------------------------------------------------------- /host_applications/android/apps/vidtex/launcher_rpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/android/apps/vidtex/launcher_rpi.h -------------------------------------------------------------------------------- /host_applications/android/apps/vidtex/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/android/apps/vidtex/main.cpp -------------------------------------------------------------------------------- /host_applications/android/apps/vidtex/svp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/android/apps/vidtex/svp.c -------------------------------------------------------------------------------- /host_applications/android/apps/vidtex/svp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/android/apps/vidtex/svp.h -------------------------------------------------------------------------------- /host_applications/android/apps/vidtex/vidtex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/android/apps/vidtex/vidtex.c -------------------------------------------------------------------------------- /host_applications/android/apps/vidtex/vidtex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/android/apps/vidtex/vidtex.h -------------------------------------------------------------------------------- /host_applications/framework/common/host_ilcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/framework/common/host_ilcore.h -------------------------------------------------------------------------------- /host_applications/framework/common/ilcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/framework/common/ilcore.c -------------------------------------------------------------------------------- /host_applications/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/dtmerge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/dtmerge/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/dtmerge/dtmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/dtmerge/dtmerge.c -------------------------------------------------------------------------------- /host_applications/linux/apps/dtoverlay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/dtoverlay/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/dtoverlay/dtoverlay-post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/dtoverlay/dtoverlay-post -------------------------------------------------------------------------------- /host_applications/linux/apps/dtoverlay/dtoverlay-pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/dtoverlay/dtoverlay-pre -------------------------------------------------------------------------------- /host_applications/linux/apps/dtoverlay/dtoverlay_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/dtoverlay/dtoverlay_main.c -------------------------------------------------------------------------------- /host_applications/linux/apps/dtoverlay/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/dtoverlay/utils.c -------------------------------------------------------------------------------- /host_applications/linux/apps/dtoverlay/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/dtoverlay/utils.h -------------------------------------------------------------------------------- /host_applications/linux/apps/gencmd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/gencmd/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/gencmd/gencmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/gencmd/gencmd.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/Makefile.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/Makefile.include -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/README -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_audio/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_audio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_audio/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_audio/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_audio/audio.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_audio/audioplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_audio/audioplay.h -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_audio/sinewave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_audio/sinewave.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_dispmanx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_dispmanx/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_dispmanx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_dispmanx/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_dispmanx/dispmanx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_dispmanx/dispmanx.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_encode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_encode/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_encode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_encode/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_encode/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_encode/encode.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/gpu_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/gpu_fft.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/gpu_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/gpu_fft.h -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/gpu_fft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/gpu_fft.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/gpu_fft_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/gpu_fft_base.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/gpu_fft_shaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/gpu_fft_shaders.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/gpu_fft_trans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/gpu_fft_trans.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/gpu_fft_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/gpu_fft_trans.h -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/gpu_fft_twiddles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/gpu_fft_twiddles.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hello_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hello_fft.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hello_fft_2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hello_fft_2d.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hex/shader_1024k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hex/shader_1024k.hex -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hex/shader_128k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hex/shader_128k.hex -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hex/shader_16k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hex/shader_16k.hex -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hex/shader_1k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hex/shader_1k.hex -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hex/shader_2048k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hex/shader_2048k.hex -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hex/shader_256.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hex/shader_256.hex -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hex/shader_256k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hex/shader_256k.hex -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hex/shader_2k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hex/shader_2k.hex -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hex/shader_32k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hex/shader_32k.hex -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hex/shader_4096k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hex/shader_4096k.hex -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hex/shader_4k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hex/shader_4k.hex -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hex/shader_512.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hex/shader_512.hex -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hex/shader_512k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hex/shader_512k.hex -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hex/shader_64k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hex/shader_64k.hex -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/hex/shader_8k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/hex/shader_8k.hex -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/mailbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/mailbox.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/mailbox.h -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_fft/qasm/gpu_fft.qinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_fft/qasm/gpu_fft.qinc -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_font/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_font/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_font/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_font/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_font/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_font/Vera.ttf -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_font/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_font/main.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_jpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_jpeg/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_jpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_jpeg/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_jpeg/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_jpeg/jpeg.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_jpeg/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_jpeg/jpeg.h -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_mmal_encode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_mmal_encode/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_teapot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_teapot/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_teapot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_teapot/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_teapot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_teapot/README.md -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_teapot/models.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_teapot/models.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_teapot/models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_teapot/models.h -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_teapot/teapot.obj.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_teapot/teapot.obj.dat -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_teapot/triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_teapot/triangle.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_teapot/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_teapot/triangle.h -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_teapot/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_teapot/video.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_tiger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_tiger/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_tiger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_tiger/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_tiger/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_tiger/license.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_tiger/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_tiger/main.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_tiger/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_tiger/readme.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_tiger/tiger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_tiger/tiger.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_tiger/tiger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_tiger/tiger.h -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_triangle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_triangle/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_triangle/triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_triangle/triangle.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_triangle2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_triangle2/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_triangle2/triangle2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_triangle2/triangle2.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_video/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_video/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_video/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_video/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_video/README: -------------------------------------------------------------------------------- 1 | The video clip test.h264 is (c) copyright 2008, Blender Foundation / www.bigbuckbunny.org 2 | -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_video/test.h264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_video/test.h264 -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_video/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_video/video.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_videocube/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_videocube/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_videocube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_videocube/README.md -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_videocube/triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_videocube/triangle.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_videocube/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_videocube/triangle.h -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_videocube/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_videocube/video.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_world/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_world/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_world/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_world/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/hello_world/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/hello_world/world.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/i420toh264/Arduino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/i420toh264/Arduino.cpp -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/i420toh264/Arduino.h: -------------------------------------------------------------------------------- 1 | unsigned long millis(); 2 | -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/i420toh264/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/i420toh264/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/i420toh264/PID_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/i420toh264/PID_test.cpp -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/i420toh264/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/i420toh264/README.md -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/i420toh264/YUV_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/i420toh264/YUV_frame.png -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/i420toh264/day.yuv.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/i420toh264/day.yuv.bz2 -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/i420toh264/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/i420toh264/encode.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/i420toh264/frame_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/i420toh264/frame_circle.png -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/i420toh264/frame_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/i420toh264/frame_full.png -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/i420toh264/i420toh264: -------------------------------------------------------------------------------- 1 | i420toh264.bin -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/i420toh264/sample_yuv2grey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/i420toh264/sample_yuv2grey.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/i420toh264/sample_yuv_pts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/i420toh264/sample_yuv_pts.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/i420view/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/i420view/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/i420view/dispmanx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/i420view/dispmanx.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/libs/ilclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/libs/ilclient/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/libs/ilclient/ilclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/libs/ilclient/ilclient.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/libs/ilclient/ilclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/libs/ilclient/ilclient.h -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/libs/ilclient/ilcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/libs/ilclient/ilcore.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/libs/revision/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/libs/revision/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/libs/revision/revision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/libs/revision/revision.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/libs/revision/revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/libs/revision/revision.h -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/libs/vgfont/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/libs/vgfont/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/libs/vgfont/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/libs/vgfont/font.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/libs/vgfont/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/libs/vgfont/graphics.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/libs/vgfont/vgfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/libs/vgfont/vgfont.h -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/libs/vgfont/vgft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/libs/vgfont/vgft.c -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/libs/vgfont/vgft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/libs/vgfont/vgft.h -------------------------------------------------------------------------------- /host_applications/linux/apps/hello_pi/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/hello_pi/rebuild.sh -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/Doxyfile -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/Makefile -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/README.md -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiCLI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiCLI.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiCLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiCLI.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiCamControl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiCamControl.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiCamControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiCamControl.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiCommonSettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiCommonSettings.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiCommonSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiCommonSettings.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiGPS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiGPS.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiGPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiGPS.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiHelpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiHelpers.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiHelpers.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiPreview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiPreview.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiPreview.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiStill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiStill.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiStillYUV.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiStillYUV.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiTex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiTex.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiTex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiTex.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiTexStub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiTexStub.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiTexUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiTexUtil.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiTexUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiTexUtil.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiVid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiVid.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/RaspiVidYUV.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/RaspiVidYUV.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/gl_scenes/mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/gl_scenes/mirror.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/gl_scenes/mirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/gl_scenes/mirror.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/gl_scenes/models.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/gl_scenes/models.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/gl_scenes/models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/gl_scenes/models.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/gl_scenes/sobel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/gl_scenes/sobel.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/gl_scenes/sobel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/gl_scenes/sobel.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/gl_scenes/square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/gl_scenes/square.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/gl_scenes/square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/gl_scenes/square.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/gl_scenes/teapot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/gl_scenes/teapot.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/gl_scenes/teapot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/gl_scenes/teapot.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/gl_scenes/vcsm_square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/gl_scenes/vcsm_square.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/gl_scenes/vcsm_square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/gl_scenes/vcsm_square.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/gl_scenes/yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/gl_scenes/yuv.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/gl_scenes/yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/gl_scenes/yuv.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/gps.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/imv_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/imv_examples/README.md -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/imv_examples/imv2pgm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/imv_examples/imv2pgm.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/imv_examples/imv2txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/imv_examples/imv2txt.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/imv_examples/plot.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/imv_examples/plot.par -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/libgps_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/libgps_loader.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/libgps_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/libgps_loader.h -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/tga.c -------------------------------------------------------------------------------- /host_applications/linux/apps/raspicam/tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/raspicam/tga.h -------------------------------------------------------------------------------- /host_applications/linux/apps/smem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/smem/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/smem/smem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/smem/smem.c -------------------------------------------------------------------------------- /host_applications/linux/apps/tvservice/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/tvservice/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/tvservice/tvservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/tvservice/tvservice.c -------------------------------------------------------------------------------- /host_applications/linux/apps/vcmailbox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/vcmailbox/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/apps/vcmailbox/vcmailbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/apps/vcmailbox/vcmailbox.c -------------------------------------------------------------------------------- /host_applications/linux/kernel_headers/vmcs_sm_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/kernel_headers/vmcs_sm_ioctl.h -------------------------------------------------------------------------------- /host_applications/linux/libs/bcm_host/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/libs/bcm_host/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/libs/bcm_host/bcm_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/libs/bcm_host/bcm_host.c -------------------------------------------------------------------------------- /host_applications/linux/libs/bcm_host/include/bcm_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/libs/bcm_host/include/bcm_host.h -------------------------------------------------------------------------------- /host_applications/linux/libs/debug_sym/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/libs/debug_sym/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/libs/debug_sym/debug_sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/libs/debug_sym/debug_sym.c -------------------------------------------------------------------------------- /host_applications/linux/libs/debug_sym/debug_sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/libs/debug_sym/debug_sym.h -------------------------------------------------------------------------------- /host_applications/linux/libs/sm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/libs/sm/CMakeLists.txt -------------------------------------------------------------------------------- /host_applications/linux/libs/sm/dma-buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/libs/sm/dma-buf.h -------------------------------------------------------------------------------- /host_applications/linux/libs/sm/user-vcsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/libs/sm/user-vcsm.c -------------------------------------------------------------------------------- /host_applications/linux/libs/sm/user-vcsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/libs/sm/user-vcsm.h -------------------------------------------------------------------------------- /host_applications/linux/libs/sm/vc_sm_cma_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/linux/libs/sm/vc_sm_cma_ioctl.h -------------------------------------------------------------------------------- /host_applications/vmcs/test_apps/mmalcam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/vmcs/test_apps/mmalcam/Makefile -------------------------------------------------------------------------------- /host_applications/vmcs/test_apps/mmalcam/mmalcam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/vmcs/test_apps/mmalcam/mmalcam.c -------------------------------------------------------------------------------- /host_applications/vmcs/test_apps/mmalcam/mmalcam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/vmcs/test_apps/mmalcam/mmalcam.h -------------------------------------------------------------------------------- /host_applications/vmcs/test_apps/mmalcam/viewfinder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/vmcs/test_apps/mmalcam/viewfinder.c -------------------------------------------------------------------------------- /host_applications/vmcs/test_apps/mmalplay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/vmcs/test_apps/mmalplay/Makefile -------------------------------------------------------------------------------- /host_applications/vmcs/test_apps/mmalplay/mmalplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/vmcs/test_apps/mmalplay/mmalplay.c -------------------------------------------------------------------------------- /host_applications/vmcs/test_apps/mmalplay/mmalplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/vmcs/test_apps/mmalplay/mmalplay.h -------------------------------------------------------------------------------- /host_applications/vmcs/test_apps/mmalplay/playback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/vmcs/test_apps/mmalplay/playback.c -------------------------------------------------------------------------------- /host_applications/vmcs/vmcs_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_applications/vmcs/vmcs_config.h.in -------------------------------------------------------------------------------- /host_support/include/vc_debug_sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_support/include/vc_debug_sym.h -------------------------------------------------------------------------------- /host_support/include/vc_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/host_support/include/vc_mem.h -------------------------------------------------------------------------------- /interface/khronos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/CMakeLists.txt -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client.c -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client_cache.c -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client_cache.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client_check_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client_check_types.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client_cr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client_cr.c -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client_global_image_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client_global_image_map.c -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client_global_image_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client_global_image_map.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client_mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client_mangle.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client_platform.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client_pointermap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client_pointermap.c -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client_pointermap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client_pointermap.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client_rpc.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client_unmangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client_unmangle.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client_vector.c -------------------------------------------------------------------------------- /interface/khronos/common/khrn_client_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_client_vector.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_int_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_int_color.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_int_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_int_common.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_int_generic_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_int_generic_map.c -------------------------------------------------------------------------------- /interface/khronos/common/khrn_int_generic_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_int_generic_map.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_int_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_int_hash.c -------------------------------------------------------------------------------- /interface/khronos/common/khrn_int_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_int_hash.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_int_hash_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_int_hash_asm.s -------------------------------------------------------------------------------- /interface/khronos/common/khrn_int_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_int_ids.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_int_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_int_image.c -------------------------------------------------------------------------------- /interface/khronos/common/khrn_int_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_int_image.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_int_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_int_math.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_int_misc_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_int_misc_impl.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_int_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_int_util.c -------------------------------------------------------------------------------- /interface/khronos/common/khrn_int_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_int_util.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_int_util_cr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_int_util_cr.h -------------------------------------------------------------------------------- /interface/khronos/common/khrn_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_options.c -------------------------------------------------------------------------------- /interface/khronos/common/khrn_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/khrn_options.h -------------------------------------------------------------------------------- /interface/khronos/common/linux/khrn_client_platform_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/linux/khrn_client_platform_linux.c -------------------------------------------------------------------------------- /interface/khronos/common/linux/khrn_client_rpc_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/linux/khrn_client_rpc_linux.c -------------------------------------------------------------------------------- /interface/khronos/common/openwfc/khrn_client_platform_openwfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/openwfc/khrn_client_platform_openwfc.c -------------------------------------------------------------------------------- /interface/khronos/common/vcos/khrn_client_platform_filler_vcos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/common/vcos/khrn_client_platform_filler_vcos.h -------------------------------------------------------------------------------- /interface/khronos/egl/egl_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/egl/egl_client.c -------------------------------------------------------------------------------- /interface/khronos/egl/egl_client_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/egl/egl_client_config.c -------------------------------------------------------------------------------- /interface/khronos/egl/egl_client_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/egl/egl_client_config.h -------------------------------------------------------------------------------- /interface/khronos/egl/egl_client_config_cr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/egl/egl_client_config_cr.c -------------------------------------------------------------------------------- /interface/khronos/egl/egl_client_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/egl/egl_client_context.c -------------------------------------------------------------------------------- /interface/khronos/egl/egl_client_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/egl/egl_client_context.h -------------------------------------------------------------------------------- /interface/khronos/egl/egl_client_cr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/egl/egl_client_cr.c -------------------------------------------------------------------------------- /interface/khronos/egl/egl_client_get_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/egl/egl_client_get_proc.c -------------------------------------------------------------------------------- /interface/khronos/egl/egl_client_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/egl/egl_client_surface.c -------------------------------------------------------------------------------- /interface/khronos/egl/egl_client_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/egl/egl_client_surface.h -------------------------------------------------------------------------------- /interface/khronos/egl/egl_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/egl/egl_int.h -------------------------------------------------------------------------------- /interface/khronos/egl/egl_int_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/egl/egl_int_config.h -------------------------------------------------------------------------------- /interface/khronos/egl/egl_int_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/egl/egl_int_impl.h -------------------------------------------------------------------------------- /interface/khronos/ext/egl_brcm_driver_monitor_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/egl_brcm_driver_monitor_client.c -------------------------------------------------------------------------------- /interface/khronos/ext/egl_brcm_driver_monitor_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/egl_brcm_driver_monitor_client.h -------------------------------------------------------------------------------- /interface/khronos/ext/egl_brcm_flush_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/egl_brcm_flush_client.c -------------------------------------------------------------------------------- /interface/khronos/ext/egl_brcm_global_image_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/egl_brcm_global_image_client.c -------------------------------------------------------------------------------- /interface/khronos/ext/egl_brcm_perf_monitor_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/egl_brcm_perf_monitor_client.c -------------------------------------------------------------------------------- /interface/khronos/ext/egl_brcm_perf_monitor_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/egl_brcm_perf_monitor_client.h -------------------------------------------------------------------------------- /interface/khronos/ext/egl_khr_image_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/egl_khr_image_client.c -------------------------------------------------------------------------------- /interface/khronos/ext/egl_khr_lock_surface_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/egl_khr_lock_surface_client.c -------------------------------------------------------------------------------- /interface/khronos/ext/egl_khr_sync_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/egl_khr_sync_client.c -------------------------------------------------------------------------------- /interface/khronos/ext/egl_khr_sync_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/egl_khr_sync_client.h -------------------------------------------------------------------------------- /interface/khronos/ext/egl_openmaxil_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/egl_openmaxil_client.c -------------------------------------------------------------------------------- /interface/khronos/ext/egl_openmaxil_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/egl_openmaxil_client.h -------------------------------------------------------------------------------- /interface/khronos/ext/ext_gl_debug_marker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/ext_gl_debug_marker.c -------------------------------------------------------------------------------- /interface/khronos/ext/gl_oes_draw_texture_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/gl_oes_draw_texture_client.c -------------------------------------------------------------------------------- /interface/khronos/ext/gl_oes_egl_image_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/gl_oes_egl_image_client.c -------------------------------------------------------------------------------- /interface/khronos/ext/gl_oes_framebuffer_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/gl_oes_framebuffer_object.c -------------------------------------------------------------------------------- /interface/khronos/ext/gl_oes_map_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/gl_oes_map_buffer.c -------------------------------------------------------------------------------- /interface/khronos/ext/gl_oes_matrix_palette_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/gl_oes_matrix_palette_client.c -------------------------------------------------------------------------------- /interface/khronos/ext/gl_oes_query_matrix_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/ext/gl_oes_query_matrix_client.c -------------------------------------------------------------------------------- /interface/khronos/glxx/gl11_int_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/glxx/gl11_int_config.h -------------------------------------------------------------------------------- /interface/khronos/glxx/gl11_int_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/glxx/gl11_int_impl.h -------------------------------------------------------------------------------- /interface/khronos/glxx/gl20_int_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/glxx/gl20_int_impl.h -------------------------------------------------------------------------------- /interface/khronos/glxx/glxx_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/glxx/glxx_client.c -------------------------------------------------------------------------------- /interface/khronos/glxx/glxx_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/glxx/glxx_client.h -------------------------------------------------------------------------------- /interface/khronos/glxx/glxx_int_attrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/glxx/glxx_int_attrib.h -------------------------------------------------------------------------------- /interface/khronos/glxx/glxx_int_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/glxx/glxx_int_config.h -------------------------------------------------------------------------------- /interface/khronos/glxx/glxx_int_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/glxx/glxx_int_impl.h -------------------------------------------------------------------------------- /interface/khronos/include/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/EGL/egl.h -------------------------------------------------------------------------------- /interface/khronos/include/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/EGL/eglext.h -------------------------------------------------------------------------------- /interface/khronos/include/EGL/eglext_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/EGL/eglext_android.h -------------------------------------------------------------------------------- /interface/khronos/include/EGL/eglext_brcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/EGL/eglext_brcm.h -------------------------------------------------------------------------------- /interface/khronos/include/EGL/eglext_nvidia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/EGL/eglext_nvidia.h -------------------------------------------------------------------------------- /interface/khronos/include/EGL/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/EGL/eglplatform.h -------------------------------------------------------------------------------- /interface/khronos/include/GLES/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/GLES/gl.h -------------------------------------------------------------------------------- /interface/khronos/include/GLES/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/GLES/glext.h -------------------------------------------------------------------------------- /interface/khronos/include/GLES/glplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/GLES/glplatform.h -------------------------------------------------------------------------------- /interface/khronos/include/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/GLES2/gl2.h -------------------------------------------------------------------------------- /interface/khronos/include/GLES2/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/GLES2/gl2ext.h -------------------------------------------------------------------------------- /interface/khronos/include/GLES2/gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/GLES2/gl2platform.h -------------------------------------------------------------------------------- /interface/khronos/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /interface/khronos/include/VG/openvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/VG/openvg.h -------------------------------------------------------------------------------- /interface/khronos/include/VG/vgext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/VG/vgext.h -------------------------------------------------------------------------------- /interface/khronos/include/VG/vgplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/VG/vgplatform.h -------------------------------------------------------------------------------- /interface/khronos/include/VG/vgu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/VG/vgu.h -------------------------------------------------------------------------------- /interface/khronos/include/WF/wfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/WF/wfc.h -------------------------------------------------------------------------------- /interface/khronos/include/WF/wfcplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/include/WF/wfcplatform.h -------------------------------------------------------------------------------- /interface/khronos/vg/vg_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/vg/vg_client.c -------------------------------------------------------------------------------- /interface/khronos/vg/vg_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/vg/vg_client.h -------------------------------------------------------------------------------- /interface/khronos/vg/vg_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/vg/vg_int.h -------------------------------------------------------------------------------- /interface/khronos/vg/vg_int_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/vg/vg_int_config.h -------------------------------------------------------------------------------- /interface/khronos/vg/vg_int_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/vg/vg_int_impl.h -------------------------------------------------------------------------------- /interface/khronos/vg/vg_int_mat3x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/vg/vg_int_mat3x3.c -------------------------------------------------------------------------------- /interface/khronos/vg/vg_int_mat3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/vg/vg_int_mat3x3.h -------------------------------------------------------------------------------- /interface/khronos/vg/vg_int_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/vg/vg_int_util.h -------------------------------------------------------------------------------- /interface/khronos/wf/wfc_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/wf/wfc_client.c -------------------------------------------------------------------------------- /interface/khronos/wf/wfc_client_ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/wf/wfc_client_ipc.c -------------------------------------------------------------------------------- /interface/khronos/wf/wfc_client_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/wf/wfc_client_ipc.h -------------------------------------------------------------------------------- /interface/khronos/wf/wfc_client_server_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/wf/wfc_client_server_api.c -------------------------------------------------------------------------------- /interface/khronos/wf/wfc_client_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/wf/wfc_client_stream.c -------------------------------------------------------------------------------- /interface/khronos/wf/wfc_client_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/wf/wfc_client_stream.h -------------------------------------------------------------------------------- /interface/khronos/wf/wfc_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/wf/wfc_int.h -------------------------------------------------------------------------------- /interface/khronos/wf/wfc_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/wf/wfc_ipc.h -------------------------------------------------------------------------------- /interface/khronos/wf/wfc_server_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/khronos/wf/wfc_server_api.h -------------------------------------------------------------------------------- /interface/mmal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/CMakeLists.txt -------------------------------------------------------------------------------- /interface/mmal/client/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(brcmjpeg) 2 | -------------------------------------------------------------------------------- /interface/mmal/client/brcmjpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/client/brcmjpeg/CMakeLists.txt -------------------------------------------------------------------------------- /interface/mmal/client/brcmjpeg/brcmjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/client/brcmjpeg/brcmjpeg.c -------------------------------------------------------------------------------- /interface/mmal/client/brcmjpeg/brcmjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/client/brcmjpeg/brcmjpeg.h -------------------------------------------------------------------------------- /interface/mmal/client/brcmjpeg/brcmjpeg_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/client/brcmjpeg/brcmjpeg_test.c -------------------------------------------------------------------------------- /interface/mmal/components/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/CMakeLists.txt -------------------------------------------------------------------------------- /interface/mmal/components/aaf_audio_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/aaf_audio_render.cpp -------------------------------------------------------------------------------- /interface/mmal/components/aggregator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/aggregator.c -------------------------------------------------------------------------------- /interface/mmal/components/android_media_codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/android_media_codec.cpp -------------------------------------------------------------------------------- /interface/mmal/components/artificial_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/artificial_camera.c -------------------------------------------------------------------------------- /interface/mmal/components/avcodec_audio_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/avcodec_audio_decoder.c -------------------------------------------------------------------------------- /interface/mmal/components/avcodec_video_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/avcodec_video_decoder.c -------------------------------------------------------------------------------- /interface/mmal/components/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/clock.c -------------------------------------------------------------------------------- /interface/mmal/components/container_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/container_reader.c -------------------------------------------------------------------------------- /interface/mmal/components/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/copy.c -------------------------------------------------------------------------------- /interface/mmal/components/null_sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/null_sink.c -------------------------------------------------------------------------------- /interface/mmal/components/passthrough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/passthrough.c -------------------------------------------------------------------------------- /interface/mmal/components/scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/scheduler.c -------------------------------------------------------------------------------- /interface/mmal/components/sdl_audio_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/sdl_audio_render.c -------------------------------------------------------------------------------- /interface/mmal/components/sdl_video_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/sdl_video_render.c -------------------------------------------------------------------------------- /interface/mmal/components/spdif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/spdif.c -------------------------------------------------------------------------------- /interface/mmal/components/splitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/components/splitter.c -------------------------------------------------------------------------------- /interface/mmal/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/CMakeLists.txt -------------------------------------------------------------------------------- /interface/mmal/core/mmal_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_buffer.c -------------------------------------------------------------------------------- /interface/mmal/core/mmal_buffer_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_buffer_private.h -------------------------------------------------------------------------------- /interface/mmal/core/mmal_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_clock.c -------------------------------------------------------------------------------- /interface/mmal/core/mmal_clock_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_clock_private.h -------------------------------------------------------------------------------- /interface/mmal/core/mmal_component.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_component.c -------------------------------------------------------------------------------- /interface/mmal/core/mmal_component_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_component_private.h -------------------------------------------------------------------------------- /interface/mmal/core/mmal_core_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_core_private.h -------------------------------------------------------------------------------- /interface/mmal/core/mmal_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_events.c -------------------------------------------------------------------------------- /interface/mmal/core/mmal_events_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_events_private.h -------------------------------------------------------------------------------- /interface/mmal/core/mmal_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_format.c -------------------------------------------------------------------------------- /interface/mmal/core/mmal_logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_logging.c -------------------------------------------------------------------------------- /interface/mmal/core/mmal_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_pool.c -------------------------------------------------------------------------------- /interface/mmal/core/mmal_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_port.c -------------------------------------------------------------------------------- /interface/mmal/core/mmal_port_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_port_clock.c -------------------------------------------------------------------------------- /interface/mmal/core/mmal_port_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_port_private.h -------------------------------------------------------------------------------- /interface/mmal/core/mmal_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/core/mmal_queue.c -------------------------------------------------------------------------------- /interface/mmal/mmal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal.h -------------------------------------------------------------------------------- /interface/mmal/mmal_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_buffer.h -------------------------------------------------------------------------------- /interface/mmal/mmal_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_clock.h -------------------------------------------------------------------------------- /interface/mmal/mmal_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_common.h -------------------------------------------------------------------------------- /interface/mmal/mmal_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_component.h -------------------------------------------------------------------------------- /interface/mmal/mmal_encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_encodings.h -------------------------------------------------------------------------------- /interface/mmal/mmal_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_events.h -------------------------------------------------------------------------------- /interface/mmal/mmal_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_format.h -------------------------------------------------------------------------------- /interface/mmal/mmal_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_logging.h -------------------------------------------------------------------------------- /interface/mmal/mmal_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_parameters.h -------------------------------------------------------------------------------- /interface/mmal/mmal_parameters_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_parameters_audio.h -------------------------------------------------------------------------------- /interface/mmal/mmal_parameters_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_parameters_camera.h -------------------------------------------------------------------------------- /interface/mmal/mmal_parameters_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_parameters_clock.h -------------------------------------------------------------------------------- /interface/mmal/mmal_parameters_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_parameters_common.h -------------------------------------------------------------------------------- /interface/mmal/mmal_parameters_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_parameters_video.h -------------------------------------------------------------------------------- /interface/mmal/mmal_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_pool.h -------------------------------------------------------------------------------- /interface/mmal/mmal_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_port.h -------------------------------------------------------------------------------- /interface/mmal/mmal_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_queue.h -------------------------------------------------------------------------------- /interface/mmal/mmal_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/mmal_types.h -------------------------------------------------------------------------------- /interface/mmal/openmaxil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/CMakeLists.txt -------------------------------------------------------------------------------- /interface/mmal/openmaxil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/README.md -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx.h -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_buffer.c -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_buffer.h -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_commands.c -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_commands.h -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_core.c -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_logging.c -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_logging.h -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_marks.c -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_marks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_marks.h -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_parameters.c -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_parameters.h -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_registry.c -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_registry.h -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_roles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_roles.c -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_roles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_roles.h -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_util_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_util_params.c -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_util_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_util_params.h -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_util_params_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_util_params_audio.c -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_util_params_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_util_params_camera.c -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_util_params_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_util_params_common.h -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_util_params_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_util_params_misc.c -------------------------------------------------------------------------------- /interface/mmal/openmaxil/mmalomx_util_params_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/openmaxil/mmalomx_util_params_video.c -------------------------------------------------------------------------------- /interface/mmal/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/test/CMakeLists.txt -------------------------------------------------------------------------------- /interface/mmal/test/examples/example_basic_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/test/examples/example_basic_1.c -------------------------------------------------------------------------------- /interface/mmal/test/examples/example_basic_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/test/examples/example_basic_2.c -------------------------------------------------------------------------------- /interface/mmal/test/examples/example_connections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/test/examples/example_connections.c -------------------------------------------------------------------------------- /interface/mmal/test/examples/example_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/test/examples/example_graph.c -------------------------------------------------------------------------------- /interface/mmal/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/CMakeLists.txt -------------------------------------------------------------------------------- /interface/mmal/util/mmal_component_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_component_wrapper.c -------------------------------------------------------------------------------- /interface/mmal/util/mmal_component_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_component_wrapper.h -------------------------------------------------------------------------------- /interface/mmal/util/mmal_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_connection.c -------------------------------------------------------------------------------- /interface/mmal/util/mmal_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_connection.h -------------------------------------------------------------------------------- /interface/mmal/util/mmal_default_components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_default_components.h -------------------------------------------------------------------------------- /interface/mmal/util/mmal_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_graph.c -------------------------------------------------------------------------------- /interface/mmal/util/mmal_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_graph.h -------------------------------------------------------------------------------- /interface/mmal/util/mmal_il.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_il.c -------------------------------------------------------------------------------- /interface/mmal/util/mmal_il.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_il.h -------------------------------------------------------------------------------- /interface/mmal/util/mmal_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_list.c -------------------------------------------------------------------------------- /interface/mmal/util/mmal_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_list.h -------------------------------------------------------------------------------- /interface/mmal/util/mmal_param_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_param_convert.c -------------------------------------------------------------------------------- /interface/mmal/util/mmal_param_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_param_convert.h -------------------------------------------------------------------------------- /interface/mmal/util/mmal_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_util.c -------------------------------------------------------------------------------- /interface/mmal/util/mmal_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_util.h -------------------------------------------------------------------------------- /interface/mmal/util/mmal_util_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_util_params.c -------------------------------------------------------------------------------- /interface/mmal/util/mmal_util_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_util_params.h -------------------------------------------------------------------------------- /interface/mmal/util/mmal_util_rational.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_util_rational.c -------------------------------------------------------------------------------- /interface/mmal/util/mmal_util_rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/util/mmal_util_rational.h -------------------------------------------------------------------------------- /interface/mmal/vc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/CMakeLists.txt -------------------------------------------------------------------------------- /interface/mmal/vc/mmal_vc_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/mmal_vc_api.c -------------------------------------------------------------------------------- /interface/mmal/vc/mmal_vc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/mmal_vc_api.h -------------------------------------------------------------------------------- /interface/mmal/vc/mmal_vc_api_drm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/mmal_vc_api_drm.c -------------------------------------------------------------------------------- /interface/mmal/vc/mmal_vc_api_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/mmal_vc_api_drm.h -------------------------------------------------------------------------------- /interface/mmal/vc/mmal_vc_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/mmal_vc_client.c -------------------------------------------------------------------------------- /interface/mmal/vc/mmal_vc_client_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/mmal_vc_client_priv.h -------------------------------------------------------------------------------- /interface/mmal/vc/mmal_vc_dbglog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/mmal_vc_dbglog.h -------------------------------------------------------------------------------- /interface/mmal/vc/mmal_vc_diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/mmal_vc_diag.c -------------------------------------------------------------------------------- /interface/mmal/vc/mmal_vc_msgnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/mmal_vc_msgnames.c -------------------------------------------------------------------------------- /interface/mmal/vc/mmal_vc_msgnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/mmal_vc_msgnames.h -------------------------------------------------------------------------------- /interface/mmal/vc/mmal_vc_msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/mmal_vc_msgs.h -------------------------------------------------------------------------------- /interface/mmal/vc/mmal_vc_opaque_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/mmal_vc_opaque_alloc.c -------------------------------------------------------------------------------- /interface/mmal/vc/mmal_vc_opaque_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/mmal_vc_opaque_alloc.h -------------------------------------------------------------------------------- /interface/mmal/vc/mmal_vc_shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/mmal_vc_shm.c -------------------------------------------------------------------------------- /interface/mmal/vc/mmal_vc_shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/mmal/vc/mmal_vc_shm.h -------------------------------------------------------------------------------- /interface/peer/vc_vchi_dispmanx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/peer/vc_vchi_dispmanx_common.h -------------------------------------------------------------------------------- /interface/vchi/common/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchi/common/endian.h -------------------------------------------------------------------------------- /interface/vchi/connections/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchi/connections/connection.h -------------------------------------------------------------------------------- /interface/vchi/message_drivers/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchi/message_drivers/message.h -------------------------------------------------------------------------------- /interface/vchi/vchi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchi/vchi.h -------------------------------------------------------------------------------- /interface/vchi/vchi_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchi/vchi_cfg.h -------------------------------------------------------------------------------- /interface/vchi/vchi_cfg_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchi/vchi_cfg_internal.h -------------------------------------------------------------------------------- /interface/vchi/vchi_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchi/vchi_common.h -------------------------------------------------------------------------------- /interface/vchi/vchi_mh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchi/vchi_mh.h -------------------------------------------------------------------------------- /interface/vchiq_arm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchiq_arm/CMakeLists.txt -------------------------------------------------------------------------------- /interface/vchiq_arm/vchiq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchiq_arm/vchiq.h -------------------------------------------------------------------------------- /interface/vchiq_arm/vchiq_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchiq_arm/vchiq_cfg.h -------------------------------------------------------------------------------- /interface/vchiq_arm/vchiq_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchiq_arm/vchiq_if.h -------------------------------------------------------------------------------- /interface/vchiq_arm/vchiq_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchiq_arm/vchiq_ioctl.h -------------------------------------------------------------------------------- /interface/vchiq_arm/vchiq_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchiq_arm/vchiq_lib.c -------------------------------------------------------------------------------- /interface/vchiq_arm/vchiq_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchiq_arm/vchiq_test.c -------------------------------------------------------------------------------- /interface/vchiq_arm/vchiq_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchiq_arm/vchiq_test.h -------------------------------------------------------------------------------- /interface/vchiq_arm/vchiq_test_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchiq_arm/vchiq_test_if.h -------------------------------------------------------------------------------- /interface/vchiq_arm/vchiq_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchiq_arm/vchiq_util.c -------------------------------------------------------------------------------- /interface/vchiq_arm/vchiq_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vchiq_arm/vchiq_util.h -------------------------------------------------------------------------------- /interface/vcos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/CMakeLists.txt -------------------------------------------------------------------------------- /interface/vcos/generic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/CMakeLists.txt -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_abort.c -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_cmd.c -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_common.h -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_deprecated.h -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_generic_blockpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_generic_blockpool.c -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_generic_blockpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_generic_blockpool.h -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_generic_event_flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_generic_event_flags.c -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_generic_event_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_generic_event_flags.h -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_generic_named_sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_generic_named_sem.c -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_generic_named_sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_generic_named_sem.h -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_generic_quickslow_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_generic_quickslow_mutex.h -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_generic_reentrant_mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_generic_reentrant_mtx.c -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_generic_reentrant_mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_generic_reentrant_mtx.h -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_generic_safe_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_generic_safe_string.c -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_generic_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_generic_tls.h -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_init.c -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_joinable_thread_from_plain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_joinable_thread_from_plain.h -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_latch_from_sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_latch_from_sem.h -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_logcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_logcat.c -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_mem_from_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_mem_from_malloc.c -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_mem_from_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_mem_from_malloc.h -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_msgqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_msgqueue.c -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_mutexes_are_reentrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_mutexes_are_reentrant.h -------------------------------------------------------------------------------- /interface/vcos/generic/vcos_thread_reaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/generic/vcos_thread_reaper.h -------------------------------------------------------------------------------- /interface/vcos/glibc/vcos_backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/glibc/vcos_backtrace.c -------------------------------------------------------------------------------- /interface/vcos/pthreads/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/pthreads/CMakeLists.txt -------------------------------------------------------------------------------- /interface/vcos/pthreads/vcos_dlfcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/pthreads/vcos_dlfcn.c -------------------------------------------------------------------------------- /interface/vcos/pthreads/vcos_futex_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/pthreads/vcos_futex_mutex.h -------------------------------------------------------------------------------- /interface/vcos/pthreads/vcos_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/pthreads/vcos_platform.h -------------------------------------------------------------------------------- /interface/vcos/pthreads/vcos_platform_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/pthreads/vcos_platform_types.h -------------------------------------------------------------------------------- /interface/vcos/pthreads/vcos_pthreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/pthreads/vcos_pthreads.c -------------------------------------------------------------------------------- /interface/vcos/user_nodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/user_nodefs.h -------------------------------------------------------------------------------- /interface/vcos/vcos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos.h -------------------------------------------------------------------------------- /interface/vcos/vcos_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_assert.h -------------------------------------------------------------------------------- /interface/vcos/vcos_atomic_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_atomic_flags.h -------------------------------------------------------------------------------- /interface/vcos/vcos_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_attr.h -------------------------------------------------------------------------------- /interface/vcos/vcos_blockpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_blockpool.h -------------------------------------------------------------------------------- /interface/vcos/vcos_build_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_build_info.h -------------------------------------------------------------------------------- /interface/vcos/vcos_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_cfg.h -------------------------------------------------------------------------------- /interface/vcos/vcos_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_cmd.h -------------------------------------------------------------------------------- /interface/vcos/vcos_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_ctype.h -------------------------------------------------------------------------------- /interface/vcos/vcos_dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_dlfcn.h -------------------------------------------------------------------------------- /interface/vcos/vcos_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_event.h -------------------------------------------------------------------------------- /interface/vcos/vcos_event_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_event_flags.h -------------------------------------------------------------------------------- /interface/vcos/vcos_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_init.h -------------------------------------------------------------------------------- /interface/vcos/vcos_inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_inttypes.h -------------------------------------------------------------------------------- /interface/vcos/vcos_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_isr.h -------------------------------------------------------------------------------- /interface/vcos/vcos_legacy_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_legacy_isr.h -------------------------------------------------------------------------------- /interface/vcos/vcos_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_logging.h -------------------------------------------------------------------------------- /interface/vcos/vcos_logging_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_logging_control.h -------------------------------------------------------------------------------- /interface/vcos/vcos_lowlevel_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_lowlevel_thread.h -------------------------------------------------------------------------------- /interface/vcos/vcos_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_mem.h -------------------------------------------------------------------------------- /interface/vcos/vcos_mempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_mempool.h -------------------------------------------------------------------------------- /interface/vcos/vcos_msgqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_msgqueue.h -------------------------------------------------------------------------------- /interface/vcos/vcos_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_mutex.h -------------------------------------------------------------------------------- /interface/vcos/vcos_named_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_named_semaphore.h -------------------------------------------------------------------------------- /interface/vcos/vcos_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_once.h -------------------------------------------------------------------------------- /interface/vcos/vcos_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_queue.h -------------------------------------------------------------------------------- /interface/vcos/vcos_quickslow_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_quickslow_mutex.h -------------------------------------------------------------------------------- /interface/vcos/vcos_reentrant_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_reentrant_mutex.h -------------------------------------------------------------------------------- /interface/vcos/vcos_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_semaphore.h -------------------------------------------------------------------------------- /interface/vcos/vcos_stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_stdbool.h -------------------------------------------------------------------------------- /interface/vcos/vcos_stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_stdint.h -------------------------------------------------------------------------------- /interface/vcos/vcos_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_string.h -------------------------------------------------------------------------------- /interface/vcos/vcos_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_thread.h -------------------------------------------------------------------------------- /interface/vcos/vcos_thread_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_thread_attr.h -------------------------------------------------------------------------------- /interface/vcos/vcos_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_timer.h -------------------------------------------------------------------------------- /interface/vcos/vcos_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_tls.h -------------------------------------------------------------------------------- /interface/vcos/vcos_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vcos/vcos_types.h -------------------------------------------------------------------------------- /interface/vctypes/vc_display_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vctypes/vc_display_types.h -------------------------------------------------------------------------------- /interface/vctypes/vc_image_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vctypes/vc_image_structs.h -------------------------------------------------------------------------------- /interface/vctypes/vc_image_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vctypes/vc_image_types.h -------------------------------------------------------------------------------- /interface/vmcs_host/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/CMakeLists.txt -------------------------------------------------------------------------------- /interface/vmcs_host/khronos/IL/OMX_Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/khronos/IL/OMX_Audio.h -------------------------------------------------------------------------------- /interface/vmcs_host/khronos/IL/OMX_Broadcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/khronos/IL/OMX_Broadcom.h -------------------------------------------------------------------------------- /interface/vmcs_host/khronos/IL/OMX_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/khronos/IL/OMX_Component.h -------------------------------------------------------------------------------- /interface/vmcs_host/khronos/IL/OMX_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/khronos/IL/OMX_Core.h -------------------------------------------------------------------------------- /interface/vmcs_host/khronos/IL/OMX_ILCS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/khronos/IL/OMX_ILCS.h -------------------------------------------------------------------------------- /interface/vmcs_host/khronos/IL/OMX_IVCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/khronos/IL/OMX_IVCommon.h -------------------------------------------------------------------------------- /interface/vmcs_host/khronos/IL/OMX_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/khronos/IL/OMX_Image.h -------------------------------------------------------------------------------- /interface/vmcs_host/khronos/IL/OMX_Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/khronos/IL/OMX_Index.h -------------------------------------------------------------------------------- /interface/vmcs_host/khronos/IL/OMX_Other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/khronos/IL/OMX_Other.h -------------------------------------------------------------------------------- /interface/vmcs_host/khronos/IL/OMX_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/khronos/IL/OMX_Types.h -------------------------------------------------------------------------------- /interface/vmcs_host/khronos/IL/OMX_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/khronos/IL/OMX_Video.h -------------------------------------------------------------------------------- /interface/vmcs_host/linux/vcfiled/vcfiled_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/linux/vcfiled/vcfiled_check.c -------------------------------------------------------------------------------- /interface/vmcs_host/linux/vcfiled/vcfiled_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/linux/vcfiled/vcfiled_check.h -------------------------------------------------------------------------------- /interface/vmcs_host/linux/vcfilesys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/linux/vcfilesys.c -------------------------------------------------------------------------------- /interface/vmcs_host/linux/vchost_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/linux/vchost_config.h -------------------------------------------------------------------------------- /interface/vmcs_host/linux/vcmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/linux/vcmisc.c -------------------------------------------------------------------------------- /interface/vmcs_host/vc_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_cec.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_cecservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_cecservice.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_cecservice_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_cecservice_defs.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_cma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_cma.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_dispmanx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_dispmanx.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_dispmanx_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_dispmanx_types.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_dispservice_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_dispservice_defs.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_dispservice_x_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_dispservice_x_defs.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_fileservice_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_fileservice_defs.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_gencmd_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_gencmd_defs.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_hdmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_hdmi.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_hdmi_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_hdmi_property.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_ilcs_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_ilcs_defs.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_imageconv_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_imageconv_defs.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_sdtv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_sdtv.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_service_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_service_common.c -------------------------------------------------------------------------------- /interface/vmcs_host/vc_service_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_service_common.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_tvservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_tvservice.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_tvservice_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_tvservice_defs.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_vchi_audioserv_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_vchi_audioserv_defs.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_vchi_bufman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_vchi_bufman.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_vchi_bufman_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_vchi_bufman_defs.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_vchi_cecservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_vchi_cecservice.c -------------------------------------------------------------------------------- /interface/vmcs_host/vc_vchi_dispmanx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_vchi_dispmanx.c -------------------------------------------------------------------------------- /interface/vmcs_host/vc_vchi_dispmanx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_vchi_dispmanx.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_vchi_fileservice_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_vchi_fileservice_defs.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_vchi_filesys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_vchi_filesys.c -------------------------------------------------------------------------------- /interface/vmcs_host/vc_vchi_filesys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_vchi_filesys.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_vchi_gencmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_vchi_gencmd.c -------------------------------------------------------------------------------- /interface/vmcs_host/vc_vchi_gencmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_vchi_gencmd.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_vchi_gpuserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_vchi_gpuserv.c -------------------------------------------------------------------------------- /interface/vmcs_host/vc_vchi_gpuserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_vchi_gpuserv.h -------------------------------------------------------------------------------- /interface/vmcs_host/vc_vchi_tvservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vc_vchi_tvservice.c -------------------------------------------------------------------------------- /interface/vmcs_host/vcfilesys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vcfilesys.h -------------------------------------------------------------------------------- /interface/vmcs_host/vcfilesys_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vcfilesys_defs.h -------------------------------------------------------------------------------- /interface/vmcs_host/vcgencmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vcgencmd.h -------------------------------------------------------------------------------- /interface/vmcs_host/vchost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vchost.h -------------------------------------------------------------------------------- /interface/vmcs_host/vchost_platform_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vchost_platform_config.h -------------------------------------------------------------------------------- /interface/vmcs_host/vcilcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vcilcs.c -------------------------------------------------------------------------------- /interface/vmcs_host/vcilcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vcilcs.h -------------------------------------------------------------------------------- /interface/vmcs_host/vcilcs_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vcilcs_common.c -------------------------------------------------------------------------------- /interface/vmcs_host/vcilcs_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vcilcs_common.h -------------------------------------------------------------------------------- /interface/vmcs_host/vcilcs_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vcilcs_in.c -------------------------------------------------------------------------------- /interface/vmcs_host/vcilcs_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/interface/vmcs_host/vcilcs_out.c -------------------------------------------------------------------------------- /makefiles/cmake/arm-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/makefiles/cmake/arm-linux.cmake -------------------------------------------------------------------------------- /makefiles/cmake/cmake_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/makefiles/cmake/cmake_config.h.in -------------------------------------------------------------------------------- /makefiles/cmake/global_settings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/makefiles/cmake/global_settings.cmake -------------------------------------------------------------------------------- /makefiles/cmake/srcs/test-mtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/makefiles/cmake/srcs/test-mtrace.c -------------------------------------------------------------------------------- /makefiles/cmake/toolchains/aarch64-linux-gnu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/makefiles/cmake/toolchains/aarch64-linux-gnu.cmake -------------------------------------------------------------------------------- /makefiles/cmake/toolchains/arm-linux-gnueabihf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/makefiles/cmake/toolchains/arm-linux-gnueabihf.cmake -------------------------------------------------------------------------------- /makefiles/cmake/toolchains/bcm2708-glibc-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/makefiles/cmake/toolchains/bcm2708-glibc-linux.cmake -------------------------------------------------------------------------------- /makefiles/cmake/vmcs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/makefiles/cmake/vmcs.cmake -------------------------------------------------------------------------------- /middleware/dlloader/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/dlloader/dlfcn.h -------------------------------------------------------------------------------- /middleware/imageconv/imageconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/imageconv/imageconv.h -------------------------------------------------------------------------------- /middleware/khronos/common/2708/khrn_interlock_filler_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/common/2708/khrn_interlock_filler_4.h -------------------------------------------------------------------------------- /middleware/khronos/common/2708/khrn_prod_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/common/2708/khrn_prod_4.h -------------------------------------------------------------------------------- /middleware/khronos/common/khrn_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/common/khrn_hw.h -------------------------------------------------------------------------------- /middleware/khronos/common/khrn_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/common/khrn_image.h -------------------------------------------------------------------------------- /middleware/khronos/common/khrn_interlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/common/khrn_interlock.h -------------------------------------------------------------------------------- /middleware/khronos/common/khrn_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/common/khrn_map.h -------------------------------------------------------------------------------- /middleware/khronos/common/khrn_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/common/khrn_mem.h -------------------------------------------------------------------------------- /middleware/khronos/common/khrn_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/common/khrn_misc.h -------------------------------------------------------------------------------- /middleware/khronos/common/khrn_pid_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/common/khrn_pid_map.h -------------------------------------------------------------------------------- /middleware/khronos/common/khrn_pid_map_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/common/khrn_pid_map_value.h -------------------------------------------------------------------------------- /middleware/khronos/common/khrn_server_pointermap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/common/khrn_server_pointermap.h -------------------------------------------------------------------------------- /middleware/khronos/dispatch/khrn_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/dispatch/khrn_dispatch.h -------------------------------------------------------------------------------- /middleware/khronos/egl/egl_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/egl/egl_disp.h -------------------------------------------------------------------------------- /middleware/khronos/egl/egl_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/egl/egl_server.h -------------------------------------------------------------------------------- /middleware/khronos/ext/egl_khr_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/ext/egl_khr_image.h -------------------------------------------------------------------------------- /middleware/khronos/vg/2708/vg_config_filler_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/vg/2708/vg_config_filler_4.h -------------------------------------------------------------------------------- /middleware/khronos/vg/vg_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/vg/vg_image.h -------------------------------------------------------------------------------- /middleware/khronos/wf/wfc_server_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/khronos/wf/wfc_server_stream.h -------------------------------------------------------------------------------- /middleware/openmaxil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/middleware/openmaxil/CMakeLists.txt -------------------------------------------------------------------------------- /opensrc/helpers/libfdt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/opensrc/helpers/libfdt/CMakeLists.txt -------------------------------------------------------------------------------- /opensrc/helpers/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/opensrc/helpers/libfdt/fdt.c -------------------------------------------------------------------------------- /opensrc/helpers/libfdt/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/opensrc/helpers/libfdt/fdt.h -------------------------------------------------------------------------------- /opensrc/helpers/libfdt/fdt_empty_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/opensrc/helpers/libfdt/fdt_empty_tree.c -------------------------------------------------------------------------------- /opensrc/helpers/libfdt/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/opensrc/helpers/libfdt/fdt_ro.c -------------------------------------------------------------------------------- /opensrc/helpers/libfdt/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/opensrc/helpers/libfdt/fdt_rw.c -------------------------------------------------------------------------------- /opensrc/helpers/libfdt/fdt_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/opensrc/helpers/libfdt/fdt_strerror.c -------------------------------------------------------------------------------- /opensrc/helpers/libfdt/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/opensrc/helpers/libfdt/fdt_sw.c -------------------------------------------------------------------------------- /opensrc/helpers/libfdt/fdt_wip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/opensrc/helpers/libfdt/fdt_wip.c -------------------------------------------------------------------------------- /opensrc/helpers/libfdt/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/opensrc/helpers/libfdt/libfdt.h -------------------------------------------------------------------------------- /opensrc/helpers/libfdt/libfdt_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/opensrc/helpers/libfdt/libfdt_env.h -------------------------------------------------------------------------------- /opensrc/helpers/libfdt/libfdt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/opensrc/helpers/libfdt/libfdt_internal.h -------------------------------------------------------------------------------- /pkgconfig/bcm_host.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/pkgconfig/bcm_host.pc.in -------------------------------------------------------------------------------- /pkgconfig/brcmegl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/pkgconfig/brcmegl.pc.in -------------------------------------------------------------------------------- /pkgconfig/brcmglesv2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/pkgconfig/brcmglesv2.pc.in -------------------------------------------------------------------------------- /pkgconfig/brcmvg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/pkgconfig/brcmvg.pc.in -------------------------------------------------------------------------------- /pkgconfig/mmal.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/pkgconfig/mmal.pc.in -------------------------------------------------------------------------------- /pkgconfig/vcsm.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/pkgconfig/vcsm.pc.in -------------------------------------------------------------------------------- /vcfw/drivers/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/vcfw/drivers/driver.h -------------------------------------------------------------------------------- /vcfw/logging/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/vcfw/logging/logging.h -------------------------------------------------------------------------------- /vcfw/rtos/common/rtos_common_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/vcfw/rtos/common/rtos_common_mem.h -------------------------------------------------------------------------------- /vcfw/rtos/rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/vcfw/rtos/rtos.h -------------------------------------------------------------------------------- /vcfw/vclib/vclib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/vcfw/vclib/vclib.h -------------------------------------------------------------------------------- /vcinclude/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/vcinclude/common.h -------------------------------------------------------------------------------- /vcinclude/vc_image_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/vcinclude/vc_image_types.h -------------------------------------------------------------------------------- /vcinclude/vcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hermann-SW2/userland/HEAD/vcinclude/vcore.h --------------------------------------------------------------------------------