about summary refs log tree commit diff
path: root/converter/ppm/ppmtompeg/headers/frames.h
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2023-10-08 17:43:54 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2023-10-08 17:43:54 +0000
commit4b091760fddc73ffc877563b445599db21557e78 (patch)
tree902fb25bdee055388372c3478dc291a4be982bac /converter/ppm/ppmtompeg/headers/frames.h
parentba88b729c83d4d99e6b9cae861044c67cd95997d (diff)
downloadnetpbm-mirror-4b091760fddc73ffc877563b445599db21557e78.tar.gz
netpbm-mirror-4b091760fddc73ffc877563b445599db21557e78.tar.xz
netpbm-mirror-4b091760fddc73ffc877563b445599db21557e78.zip
whitespace
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4735 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/ppm/ppmtompeg/headers/frames.h')
-rw-r--r--converter/ppm/ppmtompeg/headers/frames.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/converter/ppm/ppmtompeg/headers/frames.h b/converter/ppm/ppmtompeg/headers/frames.h
index 9108ac21..88638690 100644
--- a/converter/ppm/ppmtompeg/headers/frames.h
+++ b/converter/ppm/ppmtompeg/headers/frames.h
@@ -125,6 +125,8 @@ MotionToFrameCoord(int   const by,
     *xP = bx * DCTSIZE + mx;
 }
 
+
+
 #define COORD_IN_FRAME(fy,fx, type)                 \
     ((type == LUM_BLOCK) ?                      \
      ((fy >= 0) && (fx >= 0) && (fy < Fsize_y) && (fx < Fsize_x)) : \
@@ -175,6 +177,7 @@ encodeMotionVector(int      const x,
 }
 
 
+
 #define DoQuant(bit, src, dest)                                         \
   if (pattern & bit) {                                                  \
     switch (Mpost_QuantZigBlock(src, dest, QScale, FALSE)) {            \