Sha256: 21dc3f4fdb7f3e661fd941eadd044e968b3a3f73cc045b487389207585ef6f69
Contents?: true
Size: 790 Bytes
Versions: 1
Compression:
Stored size: 790 Bytes
Contents
#include "ruby.h" #include "extconf.h" #include "crc32_mpeg.h" VALUE Digest_CRC32MPEG_update(VALUE self, VALUE data) { VALUE crc_ivar_name = rb_intern("@crc"); VALUE crc_ivar = rb_ivar_get(self, crc_ivar_name); crc32_t crc = NUM2UINT(crc_ivar); const char *data_ptr = StringValuePtr(data); size_t length = RSTRING_LEN(data); crc = crc32_mpeg_update(crc,data_ptr,length); rb_ivar_set(self, crc_ivar_name, UINT2NUM(crc)); return self; } void Init_crc32_mpeg_ext() { VALUE mDigest = rb_const_get(rb_cObject, rb_intern("Digest")); VALUE cCRC32MPEG = rb_const_get(mDigest, rb_intern("CRC32MPEG")); #ifdef HAVE_RB_EXT_RACTOR_SAFE rb_ext_ractor_safe(true); #endif rb_undef_method(cCRC32MPEG, "update"); rb_define_method(cCRC32MPEG, "update", Digest_CRC32MPEG_update, 1); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
digest-crc-0.6.5 | ext/digest/crc32_mpeg/crc32_mpeg_ext.c |