-
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.
Merge pull request #710 from LebedevRI/bs-pos
Invent roundripping between `BitStreamer` state and byte stream position
- Loading branch information
Showing
54 changed files
with
438 additions
and
51 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#include <cstddef> | ||
#include <iostream> | ||
|
||
#if defined(__i386__) || defined(__x86_64__) | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/* | ||
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> | ||
requires BitStreamTraits<bo>::FixedSizeChunks | ||
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
RawSpeed - RAW file decoder. | ||
Copyright (C) 2009-2014 Klaus Post | ||
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 <cstdint> | ||
|
||
namespace rawspeed { | ||
|
||
enum class BitOrder : uint8_t { | ||
LSB, /* Memory order */ | ||
MSB, /* Input is added to stack byte by byte, and output is lifted | ||
from top */ | ||
MSB16, /* Same as above, but 16 bits at the time */ | ||
MSB32, /* Same as above, but 32 bits at the time */ | ||
JPEG, /* Same as MSB, but 0xFF byte is followed by an 0x00 stuffing byte */ | ||
}; | ||
|
||
} // 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
Oops, something went wrong.