Commit c7848da8 authored by Max Kellermann's avatar Max Kellermann

input/CdioParanoia: add `const` to pointer

parent 10a6c5c5
...@@ -293,7 +293,7 @@ CdioParanoiaInputStream::Read(void *ptr, size_t length) ...@@ -293,7 +293,7 @@ CdioParanoiaInputStream::Read(void *ptr, size_t length)
break; break;
//current sector was changed ? //current sector was changed ?
int16_t *rbuf; const int16_t *rbuf;
if (lsn_relofs != buffer_lsn) { if (lsn_relofs != buffer_lsn) {
const ScopeUnlock unlock(mutex); const ScopeUnlock unlock(mutex);
...@@ -317,7 +317,7 @@ CdioParanoiaInputStream::Read(void *ptr, size_t length) ...@@ -317,7 +317,7 @@ CdioParanoiaInputStream::Read(void *ptr, size_t length)
buffer_lsn = lsn_relofs; buffer_lsn = lsn_relofs;
} else { } else {
//use cached sector //use cached sector
rbuf = (int16_t *)buffer; rbuf = (const int16_t *)buffer;
} }
//correct offset //correct offset
...@@ -329,7 +329,7 @@ CdioParanoiaInputStream::Read(void *ptr, size_t length) ...@@ -329,7 +329,7 @@ CdioParanoiaInputStream::Read(void *ptr, size_t length)
const size_t len = (length < maxwrite? length : maxwrite); const size_t len = (length < maxwrite? length : maxwrite);
//skip diff bytes from this lsn //skip diff bytes from this lsn
memcpy(wptr, ((char*)rbuf) + diff, len); memcpy(wptr, ((const char *)rbuf) + diff, len);
//update pointer //update pointer
wptr += len; wptr += len;
nbytes += len; nbytes += len;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment