Files
dvdisaster/src/rs01-includes.h
Stéphane Lesimple db4d3af31d sync from upstream up to 22:14a375563e2b
This includes the following commits:

changeset:   22:14a375563e2b
summary:     chang "while" command to "type -P" in bash based configure

changeset:   21:c4bf7c0f33d2
summary:     updated codec paper for RS01 life cycle

changeset:   20:dbcaad8128aa
summary:     replaced build count with mercurial changeset

changeset:   19:fba258a6acfa
summary:     Added tag 0.79.10 for changeset 49950be5a2ef

changeset:   18:49950be5a2ef
summary:     merged some debian patches

changeset:   17:815be3929c41
summary:     merged "easy" patches from Stéphane Lesimple's version

changeset:   16:7d15f8a958cb
summary:     Made printf format strings 32/64bit safe as suggested by Stéphane;

changeset:   15:1055a53b8d6d
summary:     reorganized code for --with-gui=[yes|no] option

changeset:   14:fbe2ae12a32c
summary:     Added tag 0.79.9 for changeset f2fdd6d3a1f5

changeset:   13:f2fdd6d3a1f5
summary:     updated TODO and CHANGELOG

And other changes that were needed to resolve the (many) conflicts.
2021-10-09 15:22:57 +02:00

172 lines
4.5 KiB
C

/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019-2021 The dvdisaster development team.
*
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*
* dvdisaster is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* dvdisaster 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with dvdisaster. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef RS01INCLUDES_H
#define RS01INCLUDES_H
/* Data structs from rs01-window.c */
typedef struct
{
/*** Widgets for RS01 encoding */
GtkWidget *encHeadline;
GtkWidget *encLabel1;
GtkWidget *encPBar1;
GtkWidget *encLabel2;
GtkWidget *encPBar2;
GtkWidget *encFootline;
GtkWidget *encFootline2;
GtkWidget *curveButton;
/*** Widgets for RS01 fixing */
GtkWidget *fixHeadline;
GtkWidget *fixDrawingArea;
GtkWidget *fixNotebook;
GtkWidget *fixFootline;
GtkWidget *fixFootlineBox;
GtkWidget *fixCorrected;
GtkWidget *fixProgress;
GtkWidget *fixUncorrected;
Curve *fixCurve;
/*** Widgets for RS01 verify action */
GtkWidget *cmpHeadline;
GtkWidget *cmpImageNotebook;
GtkWidget *cmpImageSectors;
GtkWidget *cmpChkSumErrors;
GtkWidget *cmpMissingSectors;
GtkWidget *cmpImageMd5Sum;
GtkWidget *cmpImageResult;
GtkWidget *cmpEccNotebook;
GtkWidget *cmpEccEmptyMsg;
GtkWidget *cmpEccCreatedBy;
GtkWidget *cmpEccMethod;
GtkWidget *cmpEccRequires;
GtkWidget *cmpEccMediumSectors;
GtkWidget *cmpEccImgMd5Sum;
GtkWidget *cmpEccFingerprint;
GtkWidget *cmpEccBlocks;
GtkWidget *cmpEccMd5Sum;
GtkWidget *cmpEccResult;
GtkWidget *cmpDrawingArea;
Spiral *cmpSpiral;
PangoLayout *cmpLayout;
/*** Widgets in the Preferences window */
GtkWidget *radio1A,*radio2A,*radio3A,*radio4A;
GtkWidget *radio1B,*radio2B,*radio3B,*radio4B;
GtkWidget *radio4LabelA, *radio4LabelB;
GtkWidget *redundancyScaleA, *redundancyScaleB;
GtkWidget *redundancySpinA, *redundancySpinB;
GtkWidget *cacheScaleA, *cacheScaleB;
LabelWithOnlineHelp *cacheLwoh;
/*** Some state vars used during fixing */
gint64 corrected;
gint64 uncorrected;
gint64 nSectors;
int eccBytes;
int dataBytes;
int percent, lastPercent;
} RS01Widgets;
/*
* local working closure for internal checksums
*/
typedef struct
{ struct MD5Context md5ctxt; /* Complete image checksum */
} RS01CksumClosure;
/*
* These are exported via the Method struct
*/
void CreateRS01EWindow(Method*, GtkWidget*);
void CreateRS01FWindow(Method*, GtkWidget*);
void CreateRS01PrefsPage(Method*, GtkWidget*);
void ResetRS01EncodeWindow(Method*);
void ResetRS01FixWindow(Method*);
void ResetRS01PrefsPage(Method*);
void RS01ShowCurveButton(Method*);
void ResetRS01VerifyWindow(Method*);
void CreateRS01VerifyWindow(Method*, GtkWidget*);
/*
* These are exported (resp. only used) in ecc-rs01.c and rs01*.c
* and should not be called from somewhere else as we can not
* rely on the method plug-in being available.
* If you need similar functions in your own codec,
* please copy these functions over to the respective plug-in.
*/
/* rs01-common.c */
#define READABLE_IMAGE 0
#define READABLE_ECC 0
#define WRITEABLE_IMAGE (1<<0)
#define WRITEABLE_ECC (1<<1)
#define PRINT_MODE (1<<4)
#define CREATE_CRC ((1<<1) | (1<<5))
CrcBuf *RS01GetCrcBuf(Image*);
void RS01ResetCksums(Image*);
void RS01UpdateCksums(Image*, gint64, unsigned char*);
int RS01FinalizeCksums(Image*);
void RS01ReadSector(Image*, unsigned char*, gint64);
void RS01ScanImage(Method*, Image*, struct MD5Context*, int);
int RS01Recognize(LargeFile*, EccHeader**);
guint64 RS01ExpectedImageSize(Image*);
/* rs01-create.c */
void RS01Create(void);
/* rs01-fix.c */
void RS01Fix(Image*);
/* rs01-window.c */
void RS01AddFixValues(RS01Widgets*, int, int);
void RS01SetFixMaxValues(RS01Widgets*, int, int, gint64);
void RS01UpdateFixResults(RS01Widgets*, gint64, gint64);
/* rs01-verify.c */
#define VERIFY_IMAGE_SEGMENTS 1000
void RS01Verify(Image*);
void RS01AddVerifyValues(Method*, int, gint64, gint64, gint64, gint64);
#endif