spelling fixes for snapscan backend

merge-requests/540/head
Peter Marschall 2020-08-28 18:42:16 +02:00
rodzic cbbfcd1121
commit 0b2e89db18
8 zmienionych plików z 27 dodań i 27 usunięć

Wyświetl plik

@ -1837,7 +1837,7 @@ SANE_Status sane_control_option (SANE_Handle h,
* Fixes for Epson 3490 and 16 bit scan mode
*
* Revision 1.25 2005/09/28 22:09:26 oliver-guest
* Reenabled enhanced inquiry command for Epson scanners (duh\!)
* Re-enabled enhanced inquiry command for Epson scanners (duh\!)
*
* Revision 1.24 2005/09/28 21:33:10 oliver-guest
* Added 16 bit option for Epson scanners (untested)
@ -1849,7 +1849,7 @@ SANE_Status sane_control_option (SANE_Handle h,
* Added support for Epson 3490/3590 (thanks to Matt Judge)
*
* Revision 1.21 2005/07/20 21:37:29 oliver-guest
* Changed TPO scanning area for 2480/2580, reenabled 2400 DPI for 2480/2580
* Changed TPO scanning area for 2480/2580, re-enabled 2400 DPI for 2480/2580
*
* Revision 1.20 2005/05/22 11:50:24 oliver-guest
* Disabled 2400 DPI for Epson 2480
@ -1867,7 +1867,7 @@ SANE_Status sane_control_option (SANE_Handle h,
* Use sanei_thread in snapscan backend
*
* Revision 1.15 2004/04/02 20:19:23 oliver-guest
* Various bugfixes for gamma corretion (thanks to Robert Tsien)
* Various bugfixes for gamma correction (thanks to Robert Tsien)
*
* Revision 1.14 2004/02/01 13:32:26 oliver-guest
* Fixed resolutions for Epson 1670
@ -1903,7 +1903,7 @@ SANE_Status sane_control_option (SANE_Handle h,
* Disable quality calibration for 5300
*
* Revision 1.5 2002/06/06 20:40:00 oliverschwartz
* Changed default scan area for transparancy unit of SnapScan e50
* Changed default scan area for transparency unit of SnapScan e50
*
* Revision 1.4 2002/05/02 18:28:44 oliverschwartz
* Added ADF support

Wyświetl plik

@ -1766,7 +1766,7 @@ static SANE_Status download_firmware(SnapScan_Scanner * pss)
* Fixes for Epson 3490 and 16 bit scan mode
*
* Revision 1.40 2005/09/28 22:09:26 oliver-guest
* Reenabled enhanced inquiry command for Epson scanners (duh\!)
* Re-enabled enhanced inquiry command for Epson scanners (duh\!)
*
* Revision 1.39 2005/09/28 21:33:10 oliver-guest
* Added 16 bit option for Epson scanners (untested)
@ -1805,7 +1805,7 @@ static SANE_Status download_firmware(SnapScan_Scanner * pss)
* Added support for Epson 2480
*
* Revision 1.27 2004/04/02 20:19:24 oliver-guest
* Various bugfixes for gamma corretion (thanks to Robert Tsien)
* Various bugfixes for gamma correction (thanks to Robert Tsien)
*
* Revision 1.26 2003/11/07 23:26:49 oliver-guest
* Final bugfixes for bascic support of Epson 1670
@ -1838,7 +1838,7 @@ static SANE_Status download_firmware(SnapScan_Scanner * pss)
* Added support for Benq 5000
*
* Revision 1.32 2002/06/06 20:40:01 oliverschwartz
* Changed default scan area for transparancy unit of SnapScan e50
* Changed default scan area for transparency unit of SnapScan e50
*
* Revision 1.31 2002/05/02 18:28:44 oliverschwartz
* Added ADF support
@ -1900,7 +1900,7 @@ static SANE_Status download_firmware(SnapScan_Scanner * pss)
*
* Revision 1.15 2001/09/18 15:01:07 oliverschwartz
* - Read scanner id string again after firmware upload
* to indentify correct model
* to identify correct model
* - Make firmware upload work for AGFA scanners
* - Change copyright notice
*
@ -1943,6 +1943,6 @@ static SANE_Status download_firmware(SnapScan_Scanner * pss)
* changes.
*
* Revision 1.2 2000/10/13 03:50:27 cbagwell
* Updating to source from SANE 1.0.3. Calling this versin 1.1
* Updating to source from SANE 1.0.3. Calling this version 1.1
*
* */

Wyświetl plik

@ -689,7 +689,7 @@ typedef struct
SANE_Bool ch_lineart;
SANE_Int ch_offset; /* The number of lines to be shifted */
SANE_Bool ch_past_init; /* flag indicating if we have enough data to shift pixels down */
SANE_Bool ch_shift_even; /* flag indicating wether even or odd pixels are shifted */
SANE_Bool ch_shift_even; /* flag indicating whether even or odd pixels are shifted */
} Deinterlacer;
static SANE_Int Deinterlacer_remaining (Source *pself)
@ -1086,7 +1086,7 @@ static SANE_Status RGBRouter_init (RGBRouter *pself,
{
SANE_Int lines_in_buffer = 0;
/* Size the buffer to accomodate the necessary number of scan
/* Size the buffer to accommodate the necessary number of scan
lines to cater for the offset between R, G and B */
lines_in_buffer = pss->chroma + 1;
pself->cb_line_size = pself->bytesPerLine((Source *) pself);
@ -1216,7 +1216,7 @@ static SANE_Status create_source_chain (SnapScan_Scanner *pss,
{
case MD_COLOUR:
status = create_RGBRouter (pss, *pps, pps);
/* We only have the interlace probelms on
/* We only have the interlace problems on
some scanners like the Epson Perfection 2480/2580
at 2400 dpi. */
if (status == SANE_STATUS_GOOD &&
@ -1334,7 +1334,7 @@ static SANE_Status create_source_chain (SnapScan_Scanner *pss,
*
* Revision 1.13 2001/09/18 15:01:07 oliverschwartz
* - Read scanner id string again after firmware upload
* to indentify correct model
* to identify correct model
* - Make firmware upload work for AGFA scanners
* - Change copyright notice
*
@ -1353,7 +1353,7 @@ static SANE_Status create_source_chain (SnapScan_Scanner *pss,
*
* Revision 1.8 2000/11/28 03:55:07 cbagwell
* Reverting a fix to RGBRouter_remaining to original fix. This allows
* most scanners to scan at 600 dpi by ignoring insufficent data in
* most scanners to scan at 600 dpi by ignoring insufficient data in
* the RGB circular buffer and always returning size = 1 in those cases.
* This should probably be fixed at a higher level.
*
@ -1363,7 +1363,7 @@ static SANE_Status create_source_chain (SnapScan_Scanner *pss,
* value.
*
* Revision 1.6 2000/11/04 01:53:58 cbagwell
* Commiting some needed USB updates. Added extra test logic to detect
* Committing some needed USB updates. Added extra test logic to detect
* bad bytes_expected values. Just to help debug faster on scanners
* that tickle the bug.
*
@ -1377,5 +1377,5 @@ static SANE_Status create_source_chain (SnapScan_Scanner *pss,
* Add support for Acer300f
*
* Revision 1.2 2000/10/13 03:50:27 cbagwell
* Updating to source from SANE 1.0.3. Calling this versin 1.1
* Updating to source from SANE 1.0.3. Calling this version 1.1
* */

Wyświetl plik

@ -96,7 +96,7 @@ static SANE_Status Source_init (Source *pself,
*
* Revision 1.4 2001/09/18 15:01:07 oliverschwartz
* - Read scanner id string again after firmware upload
* to indentify correct model
* to identify correct model
* - Make firmware upload work for AGFA scanners
* - Change copyright notice
*
@ -105,5 +105,5 @@ static SANE_Status Source_init (Source *pself,
* Support for 1212U_2
*
* Revision 1.2 2000/10/13 03:50:27 cbagwell
* Updating to source from SANE 1.0.3. Calling this versin 1.1
* Updating to source from SANE 1.0.3. Calling this version 1.1
* */

Wyświetl plik

@ -648,7 +648,7 @@ static void snapscani_usb_shm_exit(void)
*
* Revision 1.12 2001/09/18 15:01:07 oliverschwartz
* - Read scanner id string again after firmware upload
* to indentify correct model
* to identify correct model
* - Make firmware upload work for AGFA scanners
* - Change copyright notice
*

Wyświetl plik

@ -121,7 +121,7 @@ static SANE_Status usb_cmd(int fd, const void *src, size_t src_size,
*
* Revision 1.8 2001/09/18 15:01:07 oliverschwartz
* - Read scanner id string again after firmware upload
* to indentify correct model
* to identify correct model
* - Make firmware upload work for AGFA scanners
* - Change copyright notice
*

Wyświetl plik

@ -2155,7 +2155,7 @@ SANE_Status sane_get_select_fd (SANE_Handle h, SANE_Int * fd)
* Set backend version to 1.4.14
*
* Revision 1.46 2002/06/06 20:40:01 oliverschwartz
* Changed default scan area for transparancy unit of SnapScan e50
* Changed default scan area for transparency unit of SnapScan e50
*
* Revision 1.45 2002/05/02 18:29:34 oliverschwartz
* - Added ADF support
@ -2247,7 +2247,7 @@ SANE_Status sane_get_select_fd (SANE_Handle h, SANE_Int * fd)
*
* Revision 1.20 2001/09/18 15:01:07 oliverschwartz
* - Read scanner id string again after firmware upload
* to indentify correct model
* to identify correct model
* - Make firmware upload work for AGFA scanners
* - Change copyright notice
*
@ -2311,7 +2311,7 @@ SANE_Status sane_get_select_fd (SANE_Handle h, SANE_Int * fd)
* changes.
*
* Revision 1.4 2000/10/13 03:50:27 cbagwell
* Updating to source from SANE 1.0.3. Calling this versin 1.1
* Updating to source from SANE 1.0.3. Calling this version 1.1
*
* Revision 1.3 2000/08/12 15:09:35 pere
* Merge devel (v1.0.3) into head branch.
@ -2550,13 +2550,13 @@ SANE_Status sane_get_select_fd (SANE_Handle h, SANE_Int * fd)
* Revision 1.16 1998/01/23 07:40:23 charter
* Reindented using GNU convention at David Mosberger-Tang's request.
* Also applied David's patch fixing problems on 64-bit architectures.
* Now using scanner's reported speed to guage amount of data to request
* Now using scanner's reported speed to gauge amount of data to request
* in a read on the scsi fd---nonblocking mode operates better now.
* Fixed stupid bug I introduced in preview mode data transfer.
*
* Revision 1.15 1998/01/22 06:18:57 charter
* Raised the priority of a couple of DBG messages in reserve_unit()
* and release_unit(), and got rid of some unecessary ones.
* and release_unit(), and got rid of some unnecessary ones.
*
* Revision 1.14 1998/01/22 05:15:35 charter
* Have replaced the bit depth option with a mode option; various

Wyświetl plik

@ -586,7 +586,7 @@ struct snapscan_scanner
*
* Revision 1.15 2001/09/18 15:01:07 oliverschwartz
* - Read scanner id string again after firmware upload
* to indentify correct model
* to identify correct model
* - Make firmware upload work for AGFA scanners
* - Change copyright notice
*
@ -622,7 +622,7 @@ struct snapscan_scanner
* Adding USB files for optional USB compiles.
*
* Revision 1.4 2000/10/13 03:50:27 cbagwell
* Updating to source from SANE 1.0.3. Calling this versin 1.1
* Updating to source from SANE 1.0.3. Calling this version 1.1
*
* Revision 1.3 2000/08/12 15:09:37 pere
* Merge devel (v1.0.3) into head branch.