├── DecoderPluginVLC ├── CMakeLists.txt ├── README.md ├── libVVCDecoder_plugin.cpp ├── libvvcdecoder_plugin.dll ├── packetizer_helper.h ├── startcode_helper.h ├── vvc_demux.cpp ├── vvc_nal.h └── vvc_packetizer.cpp ├── LICENSE ├── README.md └── TsDemuxPluginVLC ├── CMakeLists.txt ├── README.md ├── config.h ├── libvvctsdemux_plugin.dll ├── ts.c └── ts_psi.c /DecoderPluginVLC/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/DecoderPluginVLC/CMakeLists.txt -------------------------------------------------------------------------------- /DecoderPluginVLC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/DecoderPluginVLC/README.md -------------------------------------------------------------------------------- /DecoderPluginVLC/libVVCDecoder_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/DecoderPluginVLC/libVVCDecoder_plugin.cpp -------------------------------------------------------------------------------- /DecoderPluginVLC/libvvcdecoder_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/DecoderPluginVLC/libvvcdecoder_plugin.dll -------------------------------------------------------------------------------- /DecoderPluginVLC/packetizer_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/DecoderPluginVLC/packetizer_helper.h -------------------------------------------------------------------------------- /DecoderPluginVLC/startcode_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/DecoderPluginVLC/startcode_helper.h -------------------------------------------------------------------------------- /DecoderPluginVLC/vvc_demux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/DecoderPluginVLC/vvc_demux.cpp -------------------------------------------------------------------------------- /DecoderPluginVLC/vvc_nal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/DecoderPluginVLC/vvc_nal.h -------------------------------------------------------------------------------- /DecoderPluginVLC/vvc_packetizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/DecoderPluginVLC/vvc_packetizer.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/README.md -------------------------------------------------------------------------------- /TsDemuxPluginVLC/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/TsDemuxPluginVLC/CMakeLists.txt -------------------------------------------------------------------------------- /TsDemuxPluginVLC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/TsDemuxPluginVLC/README.md -------------------------------------------------------------------------------- /TsDemuxPluginVLC/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/TsDemuxPluginVLC/config.h -------------------------------------------------------------------------------- /TsDemuxPluginVLC/libvvctsdemux_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/TsDemuxPluginVLC/libvvctsdemux_plugin.dll -------------------------------------------------------------------------------- /TsDemuxPluginVLC/ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/TsDemuxPluginVLC/ts.c -------------------------------------------------------------------------------- /TsDemuxPluginVLC/ts_psi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterDigitalInc/VTMDecoder_VLCPlugin/HEAD/TsDemuxPluginVLC/ts_psi.c --------------------------------------------------------------------------------