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
5f12e190
Kaydet (Commit)
5f12e190
authored
Nis 08, 2016
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Get rid of _GIFPRIVATE
Change-Id: I3e6b8d424c460987f7a6269ad035ecaeafe48366
üst
87e949b6
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
85 additions
and
94 deletions
+85
-94
doxygen.cfg
solenv/inc/doxygen.cfg
+0
-1
doxygen_doc.cfg
solenv/inc/doxygen_doc.cfg
+0
-1
doxygen_tag.cfg
solenv/inc/doxygen_tag.cfg
+0
-1
gifread.cxx
vcl/source/filter/igif/gifread.cxx
+85
-2
gifread.hxx
vcl/source/filter/igif/gifread.hxx
+0
-89
No files found.
solenv/inc/doxygen.cfg
Dosyayı görüntüle @
5f12e190
...
...
@@ -2018,7 +2018,6 @@ PREDEFINED = LINUX \
OSL_DEBUG_LEVEL=2 \
CUI \
EXCEPTIONS_ON \
_GIFPRIVATE \
_XBMPRIVATE \
_XPMPRIVATE \
DOXYGEN_ONLY
...
...
solenv/inc/doxygen_doc.cfg
Dosyayı görüntüle @
5f12e190
...
...
@@ -2018,7 +2018,6 @@ PREDEFINED = LINUX \
OSL_DEBUG_LEVEL=2 \
CUI \
EXCEPTIONS_ON \
_GIFPRIVATE \
_XBMPRIVATE \
_XPMPRIVATE \
DOXYGEN_ONLY
...
...
solenv/inc/doxygen_tag.cfg
Dosyayı görüntüle @
5f12e190
...
...
@@ -2018,7 +2018,6 @@ PREDEFINED = LINUX \
OSL_DEBUG_LEVEL=2 \
CUI \
EXCEPTIONS_ON \
_GIFPRIVATE \
_XBMPRIVATE \
_XPMPRIVATE \
DOXYGEN_ONLY
...
...
vcl/source/filter/igif/gifread.cxx
Dosyayı görüntüle @
5f12e190
...
...
@@ -17,14 +17,97 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#define _GIFPRIVATE
#include "decode.hxx"
#include "gifread.hxx"
#include <memory>
#define NO_PENDING( rStm ) ( ( rStm ).GetError() != ERRCODE_IO_PENDING )
enum
GIFAction
{
GLOBAL_HEADER_READING
,
MARKER_READING
,
EXTENSION_READING
,
LOCAL_HEADER_READING
,
FIRST_BLOCK_READING
,
NEXT_BLOCK_READING
,
ABORT_READING
,
END_READING
};
enum
ReadState
{
GIFREAD_OK
,
GIFREAD_ERROR
,
GIFREAD_NEED_MORE
};
class
GIFLZWDecompressor
;
class
SvStream
;
class
GIFReader
:
public
GraphicReader
{
Graphic
aImGraphic
;
Animation
aAnimation
;
Bitmap
aBmp8
;
Bitmap
aBmp1
;
BitmapPalette
aGPalette
;
BitmapPalette
aLPalette
;
SvStream
&
rIStm
;
sal_uInt8
*
pSrcBuf
;
GIFLZWDecompressor
*
pDecomp
;
BitmapWriteAccess
*
pAcc8
;
BitmapWriteAccess
*
pAcc1
;
long
nYAcc
;
long
nLastPos
;
sal_uInt32
nLogWidth100
;
sal_uInt32
nLogHeight100
;
sal_uInt16
nTimer
;
sal_uInt16
nGlobalWidth
;
// maximum imagewidth from header
sal_uInt16
nGlobalHeight
;
// maximum imageheight from header
sal_uInt16
nImageWidth
;
// maximum screenwidth from header
sal_uInt16
nImageHeight
;
// maximum screenheight from header
sal_uInt16
nImagePosX
;
sal_uInt16
nImagePosY
;
sal_uInt16
nImageX
;
// maximum screenwidth from header
sal_uInt16
nImageY
;
// maximum screenheight from header
sal_uInt16
nLastImageY
;
sal_uInt16
nLastInterCount
;
sal_uInt16
nLoops
;
GIFAction
eActAction
;
bool
bStatus
;
bool
bGCTransparent
;
// is the image transparent, if yes:
bool
bInterlaced
;
bool
bOverreadBlock
;
bool
bImGraphicReady
;
bool
bGlobalPalette
;
sal_uInt8
nBackgroundColor
;
// backgroundcolour
sal_uInt8
nGCTransparentIndex
;
// pixels of this index are transparant
sal_uInt8
nGCDisposalMethod
;
// 'Disposal Method' (see GIF docs)
sal_uInt8
cTransIndex1
;
sal_uInt8
cNonTransIndex1
;
void
ReadPaletteEntries
(
BitmapPalette
*
pPal
,
sal_uLong
nCount
);
void
ClearImageExtensions
();
void
CreateBitmaps
(
long
nWidth
,
long
nHeight
,
BitmapPalette
*
pPal
,
bool
bWatchForBackgroundColor
);
bool
ReadGlobalHeader
();
bool
ReadExtension
();
bool
ReadLocalHeader
();
sal_uLong
ReadNextBlock
();
void
FillImages
(
sal_uInt8
*
pBytes
,
sal_uLong
nCount
);
void
CreateNewBitmaps
();
bool
ProcessGIF
();
public
:
ReadState
ReadGIF
(
Graphic
&
rGraphic
);
const
Graphic
&
GetIntermediateGraphic
();
explicit
GIFReader
(
SvStream
&
rStm
);
virtual
~
GIFReader
();
};
GIFReader
::
GIFReader
(
SvStream
&
rStm
)
:
aGPalette
(
256
)
,
aLPalette
(
256
)
...
...
vcl/source/filter/igif/gifread.hxx
Dosyayı görüntüle @
5f12e190
...
...
@@ -23,95 +23,6 @@
#include <vcl/graph.hxx>
#include <vcl/bitmapaccess.hxx>
#ifdef _GIFPRIVATE
enum
GIFAction
{
GLOBAL_HEADER_READING
,
MARKER_READING
,
EXTENSION_READING
,
LOCAL_HEADER_READING
,
FIRST_BLOCK_READING
,
NEXT_BLOCK_READING
,
ABORT_READING
,
END_READING
};
enum
ReadState
{
GIFREAD_OK
,
GIFREAD_ERROR
,
GIFREAD_NEED_MORE
};
class
GIFLZWDecompressor
;
class
SvStream
;
class
GIFReader
:
public
GraphicReader
{
Graphic
aImGraphic
;
Animation
aAnimation
;
Bitmap
aBmp8
;
Bitmap
aBmp1
;
BitmapPalette
aGPalette
;
BitmapPalette
aLPalette
;
SvStream
&
rIStm
;
sal_uInt8
*
pSrcBuf
;
GIFLZWDecompressor
*
pDecomp
;
BitmapWriteAccess
*
pAcc8
;
BitmapWriteAccess
*
pAcc1
;
long
nYAcc
;
long
nLastPos
;
sal_uInt32
nLogWidth100
;
sal_uInt32
nLogHeight100
;
sal_uInt16
nTimer
;
sal_uInt16
nGlobalWidth
;
// maximum imagewidth from header
sal_uInt16
nGlobalHeight
;
// maximum imageheight from header
sal_uInt16
nImageWidth
;
// maximum screenwidth from header
sal_uInt16
nImageHeight
;
// maximum screenheight from header
sal_uInt16
nImagePosX
;
sal_uInt16
nImagePosY
;
sal_uInt16
nImageX
;
// maximum screenwidth from header
sal_uInt16
nImageY
;
// maximum screenheight from header
sal_uInt16
nLastImageY
;
sal_uInt16
nLastInterCount
;
sal_uInt16
nLoops
;
GIFAction
eActAction
;
bool
bStatus
;
bool
bGCTransparent
;
// is the image transparent, if yes:
bool
bInterlaced
;
bool
bOverreadBlock
;
bool
bImGraphicReady
;
bool
bGlobalPalette
;
sal_uInt8
nBackgroundColor
;
// backgroundcolour
sal_uInt8
nGCTransparentIndex
;
// pixels of this index are transparant
sal_uInt8
nGCDisposalMethod
;
// 'Disposal Method' (see GIF docs)
sal_uInt8
cTransIndex1
;
sal_uInt8
cNonTransIndex1
;
void
ReadPaletteEntries
(
BitmapPalette
*
pPal
,
sal_uLong
nCount
);
void
ClearImageExtensions
();
void
CreateBitmaps
(
long
nWidth
,
long
nHeight
,
BitmapPalette
*
pPal
,
bool
bWatchForBackgroundColor
);
bool
ReadGlobalHeader
();
bool
ReadExtension
();
bool
ReadLocalHeader
();
sal_uLong
ReadNextBlock
();
void
FillImages
(
sal_uInt8
*
pBytes
,
sal_uLong
nCount
);
void
CreateNewBitmaps
();
bool
ProcessGIF
();
public
:
ReadState
ReadGIF
(
Graphic
&
rGraphic
);
const
Graphic
&
GetIntermediateGraphic
();
explicit
GIFReader
(
SvStream
&
rStm
);
virtual
~
GIFReader
();
};
#endif // _GIFPRIVATE
VCL_DLLPUBLIC
bool
ImportGIF
(
SvStream
&
rStream
,
Graphic
&
rGraphic
);
#endif // INCLUDED_VCL_SOURCE_FILTER_IGIF_GIFREAD_HXX
...
...
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