Home
last modified time | relevance | path

Searched refs:frame_crc (Results 1 – 25 of 42) sorted by relevance

12

/dports/audio/py-fmoo-audiotools/audiotools-3.0/docs/reference/tta/algorithms/
H A Ddecode_frame.pfl23 VAR frame_crc "frame CRC";
65 frame_crc <- read 32 unsigned /*don't process with CRC*/;
66 validate_crc(frame_crc);
H A Dencode_frame.pfl28 VAR frame_crc "frame CRC";
75 frame_crc <- calculate_crc();
76 frame_crc -> write 32 unsigned;
/dports/devel/libsigrokdecode/libsigrokdecode-0.5.3/decoders/flexray/
H A Dpd.py346 self.frame_crc = int(''.join(str(d) for d in self.bits[self.last_databit:]), 2)
348 crc_ok = self.frame_crc == expected_crc
351 self.putb([13, ['Frame CRC: 0x%X (%s)' % (self.frame_crc, crc_ann),
352 '0x%X (%s)' % (self.frame_crc, crc_ann),
353 '0x%X' % self.frame_crc]])
/dports/audio/py-fmoo-audiotools/audiotools-3.0/audiotools/py_encoders/
H A Dtta.py53 frame_crc = CRC32()
56 writer.add_callback(frame_crc.update)
117 writer.write(32, int(frame_crc))
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/nfc/nxp-nci/
H A Dfirmware.c283 u16 crc, frame_crc; in nxp_nci_fw_check_crc() local
287 frame_crc = get_unaligned_be16(skb->data + len); in nxp_nci_fw_check_crc()
289 return (crc ^ frame_crc); in nxp_nci_fw_check_crc()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/nfc/nxp-nci/
H A Dfirmware.c283 u16 crc, frame_crc; in nxp_nci_fw_check_crc() local
287 frame_crc = get_unaligned_be16(skb->data + len); in nxp_nci_fw_check_crc()
289 return (crc ^ frame_crc); in nxp_nci_fw_check_crc()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/nfc/nxp-nci/
H A Dfirmware.c283 u16 crc, frame_crc; in nxp_nci_fw_check_crc() local
287 frame_crc = get_unaligned_be16(skb->data + len); in nxp_nci_fw_check_crc()
289 return (crc ^ frame_crc); in nxp_nci_fw_check_crc()
/dports/audio/py-fmoo-audiotools/audiotools-3.0/audiotools/py_decoders/
H A Dtta.py319 frame_crc = frame_reader.read(32)
320 if int(crc) != frame_crc:
322 (frame_crc, int(crc)))
/dports/audio/py-fmoo-audiotools/audiotools-3.0/src/encoders/
H A Dtta.c162 uint32_t frame_crc = 0xFFFFFFFF; in encode_frame() local
170 output->add_callback(output, (bs_callback_f)tta_crc32, &frame_crc); in encode_frame()
261 output->write(output, 32, frame_crc ^ 0xFFFFFFFF); in encode_frame()
/dports/audio/py-fmoo-audiotools/audiotools-3.0/src/decoders/
H A Dtta.c215 uint32_t frame_crc = 0xFFFFFFFF; in TTADecoder_read() local
220 &frame_crc); in TTADecoder_read()
241 if ((frame_crc ^ 0xFFFFFFFF) != crc32) { in TTADecoder_read()
/dports/audio/fasttracker2/ft2-clone-1.49/src/libflac/
H A Dstream_decoder.c1802 uint32_t frame_crc; /* the one we calculate from the input stream */ in read_frame_() local
1808 frame_crc = 0; in read_frame_()
1809 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc); in read_frame_()
1810 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc); in read_frame_()
1811 FLAC__bitreader_reset_read_crc16(decoder->private_->input, (FLAC__uint16)frame_crc); in read_frame_()
1858 frame_crc = FLAC__bitreader_get_read_crc16(decoder->private_->input); in read_frame_()
1861 if(frame_crc == x) { in read_frame_()
/dports/games/libretro-tyrquake/tyrquake-e76477d/deps/libFLAC/
H A Dstream_decoder.c1993 unsigned frame_crc; /* the one we calculate from the input stream */ in read_frame_() local
1999 frame_crc = 0; in read_frame_()
2000 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc); in read_frame_()
2001 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc); in read_frame_()
2002 FLAC__bitreader_reset_read_crc16(decoder->private_->input, (FLAC__uint16)frame_crc); in read_frame_()
2053 frame_crc = FLAC__bitreader_get_read_crc16(decoder->private_->input); in read_frame_()
2056 if(frame_crc == x) { in read_frame_()
/dports/games/libretro-yabause/yabause-ea5b118/yabause/src/libchdr/deps/flac-1.3.2/src/libFLAC/
H A Dstream_decoder.c2020 unsigned frame_crc; /* the one we calculate from the input stream */ in read_frame_() local
2026 frame_crc = 0; in read_frame_()
2027 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc); in read_frame_()
2028 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc); in read_frame_()
2029 FLAC__bitreader_reset_read_crc16(decoder->private_->input, (FLAC__uint16)frame_crc); in read_frame_()
2080 frame_crc = FLAC__bitreader_get_read_crc16(decoder->private_->input); in read_frame_()
2083 if(frame_crc == x) { in read_frame_()
/dports/games/libretro-scummvm/scummvm-7b1e929/backends/platform/libretro/deps/libFLAC/
H A Dstream_decoder.c1993 unsigned frame_crc; /* the one we calculate from the input stream */ in read_frame_() local
1999 frame_crc = 0; in read_frame_()
2000 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc); in read_frame_()
2001 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc); in read_frame_()
2002 FLAC__bitreader_reset_read_crc16(decoder->private_->input, (FLAC__uint16)frame_crc); in read_frame_()
2053 frame_crc = FLAC__bitreader_get_read_crc16(decoder->private_->input); in read_frame_()
2056 if(frame_crc == x) { in read_frame_()
/dports/games/libretro-genesis_plus_gx/Genesis-Plus-GX-7f83bc5/core/cd_hw/libchdr/deps/libFLAC/
H A Dstream_decoder.c2020 unsigned frame_crc; /* the one we calculate from the input stream */ in read_frame_() local
2026 frame_crc = 0; in read_frame_()
2027 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc); in read_frame_()
2028 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc); in read_frame_()
2029 FLAC__bitreader_reset_read_crc16(decoder->private_->input, (FLAC__uint16)frame_crc); in read_frame_()
2080 frame_crc = FLAC__bitreader_get_read_crc16(decoder->private_->input); in read_frame_()
2083 if(frame_crc == x) { in read_frame_()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_audio_formats/codecs/flac/libFLAC/
H A Dstream_decoder.c2017 unsigned frame_crc; /* the one we calculate from the input stream */ in read_frame_() local
2023 frame_crc = 0; in read_frame_()
2024 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc); in read_frame_()
2025 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc); in read_frame_()
2026 FLAC__bitreader_reset_read_crc16(decoder->private_->input, (FLAC__uint16)frame_crc); in read_frame_()
2077 frame_crc = FLAC__bitreader_get_read_crc16(decoder->private_->input); in read_frame_()
2080 if(frame_crc == x) { in read_frame_()
/dports/games/retroarch/RetroArch-1.9.7/deps/libFLAC/
H A Dstream_decoder.c2023 unsigned frame_crc; /* the one we calculate from the input stream */ in read_frame_() local
2029 frame_crc = 0; in read_frame_()
2030 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc); in read_frame_()
2031 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc); in read_frame_()
2032 FLAC__bitreader_reset_read_crc16(decoder->private_->input, (FLAC__uint16)frame_crc); in read_frame_()
2083 frame_crc = FLAC__bitreader_get_read_crc16(decoder->private_->input); in read_frame_()
2086 if(frame_crc == x) { in read_frame_()
/dports/games/kodi-addon-game.libretro.beetle-psx/game.libretro.beetle-psx-0.9.44.22-Matrix/depends/common/beetle-psx/deps/flac-1.3.3/src/
H A Dstream_decoder.c2019 uint32_t frame_crc; /* the one we calculate from the input stream */ in read_frame_() local
2025 frame_crc = 0; in read_frame_()
2026 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc); in read_frame_()
2027 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc); in read_frame_()
2028 FLAC__bitreader_reset_read_crc16(decoder->private_->input, (FLAC__uint16)frame_crc); in read_frame_()
2079 frame_crc = FLAC__bitreader_get_read_crc16(decoder->private_->input); in read_frame_()
2082 if(frame_crc == x) { in read_frame_()
/dports/games/kodi-addon-game.libretro.pcsx-rearmed/game.libretro.pcsx-rearmed-22.0.0.19-Matrix/depends/common/pcsx-rearmed/deps/flac-1.3.2/src/libFLAC/
H A Dstream_decoder.c2020 unsigned frame_crc; /* the one we calculate from the input stream */ in read_frame_() local
2026 frame_crc = 0; in read_frame_()
2027 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc); in read_frame_()
2028 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc); in read_frame_()
2029 FLAC__bitreader_reset_read_crc16(decoder->private_->input, (FLAC__uint16)frame_crc); in read_frame_()
2080 frame_crc = FLAC__bitreader_get_read_crc16(decoder->private_->input); in read_frame_()
2083 if(frame_crc == x) { in read_frame_()
/dports/games/kodi-addon-game.libretro.genplus/game.libretro.genplus-1.7.4.15-Matrix/depends/common/genplus/core/cd_hw/libchdr/deps/libFLAC/
H A Dstream_decoder.c2020 unsigned frame_crc; /* the one we calculate from the input stream */ in read_frame_() local
2026 frame_crc = 0; in read_frame_()
2027 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc); in read_frame_()
2028 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc); in read_frame_()
2029 FLAC__bitreader_reset_read_crc16(decoder->private_->input, (FLAC__uint16)frame_crc); in read_frame_()
2080 frame_crc = FLAC__bitreader_get_read_crc16(decoder->private_->input); in read_frame_()
2083 if(frame_crc == x) { in read_frame_()
/dports/games/libretro-beetle_pce_fast/beetle-pce-fast-libretro-67426f4/deps/flac-1.3.3/src/
H A Dstream_decoder.c2019 uint32_t frame_crc; /* the one we calculate from the input stream */ in read_frame_() local
2025 frame_crc = 0; in read_frame_()
2026 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc); in read_frame_()
2027 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc); in read_frame_()
2028 FLAC__bitreader_reset_read_crc16(decoder->private_->input, (FLAC__uint16)frame_crc); in read_frame_()
2079 frame_crc = FLAC__bitreader_get_read_crc16(decoder->private_->input); in read_frame_()
2082 if(frame_crc == x) { in read_frame_()
/dports/audio/libopenshot-audio/libopenshot-audio-0.2.2/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/
H A Dstream_decoder.c2017 unsigned frame_crc; /* the one we calculate from the input stream */ in read_frame_() local
2023 frame_crc = 0; in read_frame_()
2024 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc); in read_frame_()
2025 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc); in read_frame_()
2026 FLAC__bitreader_reset_read_crc16(decoder->private_->input, (FLAC__uint16)frame_crc); in read_frame_()
2077 frame_crc = FLAC__bitreader_get_read_crc16(decoder->private_->input); in read_frame_()
2080 if(frame_crc == x) { in read_frame_()
/dports/audio/flac/flac-1.3.4/src/libFLAC/
H A Dstream_decoder.c2021 uint32_t frame_crc; /* the one we calculate from the input stream */ local
2027 frame_crc = 0;
2028 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc);
2029 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc);
2030 FLAC__bitreader_reset_read_crc16(decoder->private_->input, (FLAC__uint16)frame_crc);
2081 frame_crc = FLAC__bitreader_get_read_crc16(decoder->private_->input);
2087 if(frame_crc == x) {
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/flac/src/libFLAC/
H A Dstream_decoder.c2014 unsigned frame_crc; /* the one we calculate from the input stream */ in read_frame_() local
2020 frame_crc = 0; in read_frame_()
2021 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc); in read_frame_()
2022 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc); in read_frame_()
2023 FLAC__bitreader_reset_read_crc16(decoder->private_->input, (FLAC__uint16)frame_crc); in read_frame_()
2074 frame_crc = FLAC__bitreader_get_read_crc16(decoder->private_->input); in read_frame_()
2077 if(frame_crc == x) { in read_frame_()
/dports/emulators/mame/mame-mame0226/3rdparty/libflac/src/libFLAC/
H A Dstream_decoder.c2003 unsigned frame_crc; /* the one we calculate from the input stream */ in read_frame_() local
2009 frame_crc = 0; in read_frame_()
2010 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[0], frame_crc); in read_frame_()
2011 frame_crc = FLAC__CRC16_UPDATE(decoder->private_->header_warmup[1], frame_crc); in read_frame_()
2012 FLAC__bitreader_reset_read_crc16(decoder->private_->input, (FLAC__uint16)frame_crc); in read_frame_()
2063 frame_crc = FLAC__bitreader_get_read_crc16(decoder->private_->input); in read_frame_()
2066 if(frame_crc == x) { in read_frame_()

12