phase_one_load_raw_c() cleanup

This commit is contained in:
heckflosse
2017-09-23 11:03:07 +02:00
parent a97f7be547
commit 51804a15a0
2 changed files with 40 additions and 35 deletions

View File

@@ -316,7 +316,7 @@ void parse_qt (int end);
// ph1_bithuff(int nbits, ushort *huff);
class ph1_bithuff_t {
public:
ph1_bithuff_t(DCraw *p,IMFILE *&i,short &o):parent(p),order(o),ifp(i),bitbuf(0),vbits(0){}
ph1_bithuff_t(DCraw *p,IMFILE *i,short &o):parent(p),order(o),ifp(i),bitbuf(0),vbits(0){}
unsigned operator()(int nbits, ushort *huff);
unsigned operator()(int nbits);
unsigned operator()();