Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
840ad0a8
Kaydet (Commit)
840ad0a8
authored
Şub 23, 2017
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
improve scoping
Change-Id: Ic79d46da4e322a0f52981c3a3df65f7f0294fdd8
üst
d8a27747
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
itiff.cxx
filter/source/graphicfilter/itiff/itiff.cxx
+3
-3
No files found.
filter/source/graphicfilter/itiff/itiff.cxx
Dosyayı görüntüle @
840ad0a8
...
...
@@ -782,7 +782,7 @@ sal_uLong TIFFReader::GetBits( const sal_uInt8 * pSrc, sal_uLong nBitsPos, sal_u
bool
TIFFReader
::
ConvertScanline
(
sal_Int32
nY
)
{
sal_uInt32
nRed
,
nGreen
,
nBlue
,
ns
,
nVal
,
nByteCount
;
sal_uInt32
nRed
,
nGreen
,
nBlue
,
ns
,
nVal
;
sal_uInt8
nByteVal
;
if
(
nDstBitsPerPixel
==
24
)
...
...
@@ -993,10 +993,11 @@ bool TIFFReader::ConvertScanline(sal_Int32 nY)
case
1
:
{
sal_uInt32
nByteCount
=
(
nImageWidth
>>
3
)
+
1
;
if
(
bByteSwap
)
{
sal_Int32
nx
=
0
;
nByteCount
=
(
nImageWidth
>>
3
)
+
1
;
while
(
--
nByteCount
)
{
nByteVal
=
*
pt
++
;
...
...
@@ -1029,7 +1030,6 @@ bool TIFFReader::ConvertScanline(sal_Int32 nY)
else
{
sal_Int32
nx
=
7
;
nByteCount
=
(
nImageWidth
>>
3
)
+
1
;
while
(
--
nByteCount
)
{
nByteVal
=
*
pt
++
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment