├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── check.sh ├── common ├── common_block.c ├── common_block.h ├── common_block_hbd.c ├── common_frame.c ├── common_frame.h ├── common_frame_hbd.c ├── common_kernels.c ├── common_kernels.h ├── common_kernels_gen.c ├── common_kernels_hbd.c ├── common_tables.c ├── global.h ├── inter_prediction.c ├── inter_prediction.h ├── inter_prediction_hbd.c ├── intra_prediction.c ├── intra_prediction.h ├── intra_prediction_hbd.c ├── simd.c ├── simd.h ├── simd │ ├── v128_intrinsics.h │ ├── v128_intrinsics_arm.h │ ├── v128_intrinsics_c.h │ ├── v128_intrinsics_x86.h │ ├── v256_intrinsics.h │ ├── v256_intrinsics_arm.h │ ├── v256_intrinsics_c.h │ ├── v256_intrinsics_v128.h │ ├── v256_intrinsics_x86.h │ ├── v64_intrinsics.h │ ├── v64_intrinsics_arm.h │ ├── v64_intrinsics_c.h │ └── v64_intrinsics_x86.h ├── snr.c ├── snr.h ├── snr_hbd.c ├── temporal_interp.c ├── temporal_interp.h ├── temporal_interp_hbd.c ├── transform.c ├── transform.h ├── types.h ├── wt_matrix.c └── wt_matrix.h ├── config_HDB16_high_efficiency.txt ├── config_HDB16_low_complexity.txt ├── config_HDB16_medium_complexity.txt ├── config_HDB16_qm_high_efficiency.txt ├── config_HDB16_qm_low_complexity.txt ├── config_HDB16_qm_medium_complexity.txt ├── config_HDB_high_efficiency.txt ├── config_HDB_low_complexity.txt ├── config_HDB_medium_complexity.txt ├── config_HDB_qm_high_efficiency.txt ├── config_HDB_qm_low_complexity.txt ├── config_HDB_qm_medium_complexity.txt ├── config_LDB_high_efficiency.txt ├── config_LDB_low_complexity.txt ├── config_LDB_medium_complexity.txt ├── config_LDB_qm_high_efficiency.txt ├── config_LDB_qm_low_complexity.txt ├── config_LDB_qm_medium_complexity.txt ├── config_RA16_high_efficiency.txt ├── config_RA16_low_complexity.txt ├── config_RA16_medium_complexity.txt ├── config_RA_high_efficiency.txt ├── config_RA_low_complexity.txt ├── config_RA_medium_complexity.txt ├── config_RA_qm_high_efficiency.txt ├── config_RA_qm_low_complexity.txt ├── config_RA_qm_medium_complexity.txt ├── dec ├── decode_block.c ├── decode_block.h ├── decode_block_hbd.c ├── decode_frame.c ├── decode_frame.h ├── getbits.c ├── getbits.h ├── getvlc.c ├── getvlc.h ├── maindec.c ├── maindec.h ├── read_bits.c └── read_bits.h ├── enc ├── enc_kernels.c ├── enc_kernels.h ├── enc_kernels_gen.c ├── enc_kernels_hbd.c ├── encode_block.c ├── encode_block.h ├── encode_block_hbd.c ├── encode_frame.c ├── encode_frame.h ├── encode_frame_hbd.c ├── encode_tables.c ├── mainenc.c ├── mainenc.h ├── putbits.c ├── putbits.h ├── putvlc.c ├── putvlc.h ├── rc.c ├── rc.h ├── strings.c ├── strings.h ├── write_bits.c └── write_bits.h └── scripts └── lbd_to_hbd.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/README.md -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/check.sh -------------------------------------------------------------------------------- /common/common_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/common_block.c -------------------------------------------------------------------------------- /common/common_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/common_block.h -------------------------------------------------------------------------------- /common/common_block_hbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/common_block_hbd.c -------------------------------------------------------------------------------- /common/common_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/common_frame.c -------------------------------------------------------------------------------- /common/common_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/common_frame.h -------------------------------------------------------------------------------- /common/common_frame_hbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/common_frame_hbd.c -------------------------------------------------------------------------------- /common/common_kernels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/common_kernels.c -------------------------------------------------------------------------------- /common/common_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/common_kernels.h -------------------------------------------------------------------------------- /common/common_kernels_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/common_kernels_gen.c -------------------------------------------------------------------------------- /common/common_kernels_hbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/common_kernels_hbd.c -------------------------------------------------------------------------------- /common/common_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/common_tables.c -------------------------------------------------------------------------------- /common/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/global.h -------------------------------------------------------------------------------- /common/inter_prediction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/inter_prediction.c -------------------------------------------------------------------------------- /common/inter_prediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/inter_prediction.h -------------------------------------------------------------------------------- /common/inter_prediction_hbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/inter_prediction_hbd.c -------------------------------------------------------------------------------- /common/intra_prediction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/intra_prediction.c -------------------------------------------------------------------------------- /common/intra_prediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/intra_prediction.h -------------------------------------------------------------------------------- /common/intra_prediction_hbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/intra_prediction_hbd.c -------------------------------------------------------------------------------- /common/simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/simd.c -------------------------------------------------------------------------------- /common/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/simd.h -------------------------------------------------------------------------------- /common/simd/v128_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/simd/v128_intrinsics.h -------------------------------------------------------------------------------- /common/simd/v128_intrinsics_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/simd/v128_intrinsics_arm.h -------------------------------------------------------------------------------- /common/simd/v128_intrinsics_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/simd/v128_intrinsics_c.h -------------------------------------------------------------------------------- /common/simd/v128_intrinsics_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/simd/v128_intrinsics_x86.h -------------------------------------------------------------------------------- /common/simd/v256_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/simd/v256_intrinsics.h -------------------------------------------------------------------------------- /common/simd/v256_intrinsics_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/simd/v256_intrinsics_arm.h -------------------------------------------------------------------------------- /common/simd/v256_intrinsics_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/simd/v256_intrinsics_c.h -------------------------------------------------------------------------------- /common/simd/v256_intrinsics_v128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/simd/v256_intrinsics_v128.h -------------------------------------------------------------------------------- /common/simd/v256_intrinsics_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/simd/v256_intrinsics_x86.h -------------------------------------------------------------------------------- /common/simd/v64_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/simd/v64_intrinsics.h -------------------------------------------------------------------------------- /common/simd/v64_intrinsics_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/simd/v64_intrinsics_arm.h -------------------------------------------------------------------------------- /common/simd/v64_intrinsics_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/simd/v64_intrinsics_c.h -------------------------------------------------------------------------------- /common/simd/v64_intrinsics_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/simd/v64_intrinsics_x86.h -------------------------------------------------------------------------------- /common/snr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/snr.c -------------------------------------------------------------------------------- /common/snr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/snr.h -------------------------------------------------------------------------------- /common/snr_hbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/snr_hbd.c -------------------------------------------------------------------------------- /common/temporal_interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/temporal_interp.c -------------------------------------------------------------------------------- /common/temporal_interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/temporal_interp.h -------------------------------------------------------------------------------- /common/temporal_interp_hbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/temporal_interp_hbd.c -------------------------------------------------------------------------------- /common/transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/transform.c -------------------------------------------------------------------------------- /common/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/transform.h -------------------------------------------------------------------------------- /common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/types.h -------------------------------------------------------------------------------- /common/wt_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/wt_matrix.c -------------------------------------------------------------------------------- /common/wt_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/common/wt_matrix.h -------------------------------------------------------------------------------- /config_HDB16_high_efficiency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_HDB16_high_efficiency.txt -------------------------------------------------------------------------------- /config_HDB16_low_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_HDB16_low_complexity.txt -------------------------------------------------------------------------------- /config_HDB16_medium_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_HDB16_medium_complexity.txt -------------------------------------------------------------------------------- /config_HDB16_qm_high_efficiency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_HDB16_qm_high_efficiency.txt -------------------------------------------------------------------------------- /config_HDB16_qm_low_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_HDB16_qm_low_complexity.txt -------------------------------------------------------------------------------- /config_HDB16_qm_medium_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_HDB16_qm_medium_complexity.txt -------------------------------------------------------------------------------- /config_HDB_high_efficiency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_HDB_high_efficiency.txt -------------------------------------------------------------------------------- /config_HDB_low_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_HDB_low_complexity.txt -------------------------------------------------------------------------------- /config_HDB_medium_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_HDB_medium_complexity.txt -------------------------------------------------------------------------------- /config_HDB_qm_high_efficiency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_HDB_qm_high_efficiency.txt -------------------------------------------------------------------------------- /config_HDB_qm_low_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_HDB_qm_low_complexity.txt -------------------------------------------------------------------------------- /config_HDB_qm_medium_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_HDB_qm_medium_complexity.txt -------------------------------------------------------------------------------- /config_LDB_high_efficiency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_LDB_high_efficiency.txt -------------------------------------------------------------------------------- /config_LDB_low_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_LDB_low_complexity.txt -------------------------------------------------------------------------------- /config_LDB_medium_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_LDB_medium_complexity.txt -------------------------------------------------------------------------------- /config_LDB_qm_high_efficiency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_LDB_qm_high_efficiency.txt -------------------------------------------------------------------------------- /config_LDB_qm_low_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_LDB_qm_low_complexity.txt -------------------------------------------------------------------------------- /config_LDB_qm_medium_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_LDB_qm_medium_complexity.txt -------------------------------------------------------------------------------- /config_RA16_high_efficiency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_RA16_high_efficiency.txt -------------------------------------------------------------------------------- /config_RA16_low_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_RA16_low_complexity.txt -------------------------------------------------------------------------------- /config_RA16_medium_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_RA16_medium_complexity.txt -------------------------------------------------------------------------------- /config_RA_high_efficiency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_RA_high_efficiency.txt -------------------------------------------------------------------------------- /config_RA_low_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_RA_low_complexity.txt -------------------------------------------------------------------------------- /config_RA_medium_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_RA_medium_complexity.txt -------------------------------------------------------------------------------- /config_RA_qm_high_efficiency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_RA_qm_high_efficiency.txt -------------------------------------------------------------------------------- /config_RA_qm_low_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_RA_qm_low_complexity.txt -------------------------------------------------------------------------------- /config_RA_qm_medium_complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/config_RA_qm_medium_complexity.txt -------------------------------------------------------------------------------- /dec/decode_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/dec/decode_block.c -------------------------------------------------------------------------------- /dec/decode_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/dec/decode_block.h -------------------------------------------------------------------------------- /dec/decode_block_hbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/dec/decode_block_hbd.c -------------------------------------------------------------------------------- /dec/decode_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/dec/decode_frame.c -------------------------------------------------------------------------------- /dec/decode_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/dec/decode_frame.h -------------------------------------------------------------------------------- /dec/getbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/dec/getbits.c -------------------------------------------------------------------------------- /dec/getbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/dec/getbits.h -------------------------------------------------------------------------------- /dec/getvlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/dec/getvlc.c -------------------------------------------------------------------------------- /dec/getvlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/dec/getvlc.h -------------------------------------------------------------------------------- /dec/maindec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/dec/maindec.c -------------------------------------------------------------------------------- /dec/maindec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/dec/maindec.h -------------------------------------------------------------------------------- /dec/read_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/dec/read_bits.c -------------------------------------------------------------------------------- /dec/read_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/dec/read_bits.h -------------------------------------------------------------------------------- /enc/enc_kernels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/enc_kernels.c -------------------------------------------------------------------------------- /enc/enc_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/enc_kernels.h -------------------------------------------------------------------------------- /enc/enc_kernels_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/enc_kernels_gen.c -------------------------------------------------------------------------------- /enc/enc_kernels_hbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/enc_kernels_hbd.c -------------------------------------------------------------------------------- /enc/encode_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/encode_block.c -------------------------------------------------------------------------------- /enc/encode_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/encode_block.h -------------------------------------------------------------------------------- /enc/encode_block_hbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/encode_block_hbd.c -------------------------------------------------------------------------------- /enc/encode_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/encode_frame.c -------------------------------------------------------------------------------- /enc/encode_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/encode_frame.h -------------------------------------------------------------------------------- /enc/encode_frame_hbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/encode_frame_hbd.c -------------------------------------------------------------------------------- /enc/encode_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/encode_tables.c -------------------------------------------------------------------------------- /enc/mainenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/mainenc.c -------------------------------------------------------------------------------- /enc/mainenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/mainenc.h -------------------------------------------------------------------------------- /enc/putbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/putbits.c -------------------------------------------------------------------------------- /enc/putbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/putbits.h -------------------------------------------------------------------------------- /enc/putvlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/putvlc.c -------------------------------------------------------------------------------- /enc/putvlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/putvlc.h -------------------------------------------------------------------------------- /enc/rc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/rc.c -------------------------------------------------------------------------------- /enc/rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/rc.h -------------------------------------------------------------------------------- /enc/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/strings.c -------------------------------------------------------------------------------- /enc/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/strings.h -------------------------------------------------------------------------------- /enc/write_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/write_bits.c -------------------------------------------------------------------------------- /enc/write_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/enc/write_bits.h -------------------------------------------------------------------------------- /scripts/lbd_to_hbd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cisco/thor/HEAD/scripts/lbd_to_hbd.sh --------------------------------------------------------------------------------