Skip to content

Commit 7a603e4

Browse files
committed
fix debug prints under emscripten
1 parent 156ffdf commit 7a603e4

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

input/bsv/bsvmovie.c

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1126,8 +1126,8 @@ int64_t bsv_movie_write_deduped_state(bsv_movie_t *movie, uint8_t *state, size_t
11261126
static uint32_t total_blocks = 0;
11271127
static uint32_t total_superblocks = 0;
11281128
static uint32_t total_checkpoints = 0;
1129-
static uint64_t total_bytes_input = 0;
1130-
static uint64_t total_bytes_written = 0;
1129+
static uint32_t total_kbs_input = 0;
1130+
static uint32_t total_kbs_written = 0;
11311131
static retro_perf_tick_t total_encode_micros = 0;
11321132
retro_perf_tick_t start = cpu_features_get_time_usec();
11331133
size_t block_byte_size = movie->blocks->object_size*4;
@@ -1136,7 +1136,7 @@ int64_t bsv_movie_write_deduped_state(bsv_movie_t *movie, uint8_t *state, size_t
11361136
size_t superblock_count = state_size / superblock_byte_size + (state_size % superblock_byte_size != 0);
11371137
uint32_t *superblock_buf = calloc(superblock_size, sizeof(uint32_t));
11381138
uint8_t *padded_block = NULL;
1139-
intfstream_t *out_stream = intfstream_open_memory(output, RETRO_VFS_FILE_ACCESS_READ_WRITE, RETRO_VFS_FILE_ACCESS_HINT_NONE, output_capacity);
1139+
intfstream_t *out_stream = intfstream_open_writable_memory(output, RETRO_VFS_FILE_ACCESS_READ_WRITE, RETRO_VFS_FILE_ACCESS_HINT_NONE, output_capacity);
11401140
int64_t encoded_size;
11411141
size_t superblock, block;
11421142
uint32_t i;
@@ -1241,10 +1241,11 @@ int64_t bsv_movie_write_deduped_state(bsv_movie_t *movie, uint8_t *state, size_t
12411241
movie->cur_save_valid = true;
12421242
total_checkpoints++;
12431243
total_encode_micros += cpu_features_get_time_usec() - start;
1244-
total_bytes_input += state_size;
1245-
total_bytes_written += intfstream_tell(out_stream);
1246-
RARCH_DBG("[STATESTREAM] Encode stats at checkpoint %d: %d blocks (%d reused, %d skipped [%d checks], %d distinct [%d hashes]); %d superblocks (%d reused, %d distinct); unencoded size (KB) %d, encoded size (KB) %d; net time (secs) %f\n", total_checkpoints, total_blocks, reused_blocks, skipped_blocks, memcmps, uint32s_index_count(movie->blocks), hashes, total_superblocks, reused_superblocks, uint32s_index_count(movie->superblocks), total_bytes_input/1024, total_bytes_written/1024, ((float)total_encode_micros) / 1000000.0);
1244+
total_kbs_input += state_size/1024;
12471245
encoded_size = intfstream_tell(out_stream);
1246+
total_kbs_written += encoded_size/1024;
1247+
RARCH_DBG("[STATESTREAM] Encode stats at checkpoint %d: %d blocks (%d reused, %d skipped [%d checks], %d distinct [%d hashes])\n", total_checkpoints, total_blocks, reused_blocks, skipped_blocks, memcmps, uint32s_index_count(movie->blocks), hashes);
1248+
RARCH_DBG("[STATESTREAM] %d superblocks (%d reused, %d distinct); unencoded size (KB) %d, encoded size (KB) %d; net time (secs) %f\n", total_superblocks, reused_superblocks, uint32s_index_count(movie->superblocks), total_kbs_input, total_kbs_written, ((float)total_encode_micros) / (float)1000000.0);
12481249
intfstream_close(out_stream);
12491250
return encoded_size;
12501251
}

0 commit comments

Comments
 (0)