-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Invent roundripping between
BitStreamer
state and byte stream position
- Loading branch information
Showing
6 changed files
with
258 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
RawSpeed - RAW file decoder. | ||
Copyright (C) 2024 Roman Lebedev | ||
This library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 2 of the License, or (at your option) any later version. | ||
This library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public | ||
License along with this library; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "adt/Casts.h" | ||
#include "adt/Invariant.h" | ||
#include "bitstreams/BitStreams.h" | ||
#include "common/Common.h" | ||
|
||
namespace rawspeed { | ||
|
||
template <BitOrder bo> struct BitStreamTraits; | ||
|
||
template <BitOrder bo> struct BitStreamPosition { | ||
int pos; | ||
int fillLevel; | ||
}; | ||
|
||
template <BitOrder bo> struct ByteStreamPosition { | ||
int bytePos; | ||
int numBitsToSkip; | ||
}; | ||
|
||
template <BitOrder bo> | ||
ByteStreamPosition<bo> getAsByteStreamPosition(BitStreamPosition<bo> state) { | ||
const int MinByteStepMultiple = BitStreamTraits<bo>::MinLoadStepByteMultiple; | ||
|
||
invariant(state.pos >= 0); | ||
invariant(state.pos % MinByteStepMultiple == 0); | ||
invariant(state.fillLevel >= 0); | ||
|
||
auto numBytesRemainingInCache = | ||
implicit_cast<int>(roundUpDivision(state.fillLevel, CHAR_BIT)); | ||
invariant(numBytesRemainingInCache >= 0); | ||
invariant(numBytesRemainingInCache <= state.pos); | ||
|
||
auto numBytesToBacktrack = implicit_cast<int>( | ||
roundUp(numBytesRemainingInCache, MinByteStepMultiple)); | ||
invariant(numBytesToBacktrack >= 0); | ||
invariant(numBytesToBacktrack <= state.pos); | ||
invariant(numBytesToBacktrack % MinByteStepMultiple == 0); | ||
|
||
auto numBitsToBacktrack = CHAR_BIT * numBytesToBacktrack; | ||
invariant(numBitsToBacktrack >= 0); | ||
|
||
ByteStreamPosition<bo> res; | ||
invariant(state.pos >= numBytesToBacktrack); | ||
res.bytePos = state.pos - numBytesToBacktrack; | ||
invariant(numBitsToBacktrack >= state.fillLevel); | ||
res.numBitsToSkip = numBitsToBacktrack - state.fillLevel; | ||
|
||
invariant(res.bytePos >= 0); | ||
invariant(res.bytePos <= state.pos); | ||
invariant(res.bytePos % MinByteStepMultiple == 0); | ||
invariant(res.numBitsToSkip >= 0); | ||
return res; | ||
} | ||
|
||
} // namespace rawspeed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters