summaryrefslogtreecommitdiff
path: root/svtools/source/filter/filter2.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/filter/filter2.cxx')
-rw-r--r--svtools/source/filter/filter2.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/svtools/source/filter/filter2.cxx b/svtools/source/filter/filter2.cxx
index 58fafc47c0f2..d34825312470 100644
--- a/svtools/source/filter/filter2.cxx
+++ b/svtools/source/filter/filter2.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -433,7 +434,6 @@ sal_Bool GraphicDescriptor::ImpDetectJPG( SvStream& rStm, sal_Bool bExtendedInf
sal_uInt8 nNumberOfImageComponents;
sal_uInt8 nComponentsIdentifier;
sal_uInt8 nHorizontalSamplingFactor;
- sal_uInt8 nVerticalSamplingFactor;
sal_uInt8 nQuantizationTableDestinationSelector;
rStm >> nSamplePrecision
>> nNumberOfLines
@@ -442,7 +442,6 @@ sal_Bool GraphicDescriptor::ImpDetectJPG( SvStream& rStm, sal_Bool bExtendedInf
>> nComponentsIdentifier
>> nHorizontalSamplingFactor
>> nQuantizationTableDestinationSelector;
- nVerticalSamplingFactor = nHorizontalSamplingFactor & 0xf;
nHorizontalSamplingFactor >>= 4;
aPixSize.Height() = nNumberOfLines;
@@ -1352,3 +1351,5 @@ String GraphicDescriptor::GetImportFormatShortName( sal_uInt16 nFormat )
return String( aKeyName, RTL_TEXTENCODING_ASCII_US );
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ \ No newline at end of file