├── CMakeLists.txt ├── FindFFMPEG.cmake ├── FindPulseAudio.cmake ├── README.md ├── cave_1-4.conf ├── config.cfg ├── glv.conf ├── include ├── Audioplayer.h ├── Decoder.h ├── JUtils.h ├── Pulseplayer.h └── Renderer.h └── src ├── Audioplayer.cpp ├── Decoder.cpp ├── Pulseplayer.cpp ├── Renderer.cpp ├── ffmpeg_audio_cheatsheet.cpp ├── main.cpp ├── main_local.cpp ├── main_server.cpp └── old.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /FindFFMPEG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/FindFFMPEG.cmake -------------------------------------------------------------------------------- /FindPulseAudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/FindPulseAudio.cmake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/README.md -------------------------------------------------------------------------------- /cave_1-4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/cave_1-4.conf -------------------------------------------------------------------------------- /config.cfg: -------------------------------------------------------------------------------- 1 | 0:1:0:1 2 | -------------------------------------------------------------------------------- /glv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/glv.conf -------------------------------------------------------------------------------- /include/Audioplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/include/Audioplayer.h -------------------------------------------------------------------------------- /include/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/include/Decoder.h -------------------------------------------------------------------------------- /include/JUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/include/JUtils.h -------------------------------------------------------------------------------- /include/Pulseplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/include/Pulseplayer.h -------------------------------------------------------------------------------- /include/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/include/Renderer.h -------------------------------------------------------------------------------- /src/Audioplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/src/Audioplayer.cpp -------------------------------------------------------------------------------- /src/Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/src/Decoder.cpp -------------------------------------------------------------------------------- /src/Pulseplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/src/Pulseplayer.cpp -------------------------------------------------------------------------------- /src/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/src/Renderer.cpp -------------------------------------------------------------------------------- /src/ffmpeg_audio_cheatsheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/src/ffmpeg_audio_cheatsheet.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/src/main_local.cpp -------------------------------------------------------------------------------- /src/main_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/src/main_server.cpp -------------------------------------------------------------------------------- /src/old.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golim4r/OpenGL-Video-Player/HEAD/src/old.cpp --------------------------------------------------------------------------------