qemacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemacs-devel] Changes to qemacs/mpeg.c


From: Charlie Gordon
Subject: [Qemacs-devel] Changes to qemacs/mpeg.c
Date: Wed, 11 May 2005 11:12:18 -0400

Index: qemacs/mpeg.c
diff -u qemacs/mpeg.c:1.1.1.1 qemacs/mpeg.c:1.2
--- qemacs/mpeg.c:1.1.1.1       Sat May 29 10:18:56 2004
+++ qemacs/mpeg.c       Wed May 11 15:12:14 2005
@@ -18,14 +18,14 @@
  */
 #include "qe.h"
 
-#define SEQ_END_CODE           0x000001b7
-#define SEQ_START_CODE         0x000001b3
-#define GOP_START_CODE         0x000001b8
-#define PICTURE_START_CODE     0x00000100
-#define SLICE_MIN_START_CODE   0x00000101
-#define SLICE_MAX_START_CODE   0x000001af
-#define EXT_START_CODE         0x000001b5
-#define USER_START_CODE                0x000001b2
+#define SEQ_END_CODE            0x000001b7
+#define SEQ_START_CODE          0x000001b3
+#define GOP_START_CODE          0x000001b8
+#define PICTURE_START_CODE      0x00000100
+#define SLICE_MIN_START_CODE    0x00000101
+#define SLICE_MAX_START_CODE    0x000001af
+#define EXT_START_CODE          0x000001b5
+#define USER_START_CODE         0x000001b2
 
 #define PACK_START_CODE             0x000001ba
 #define SYSTEM_HEADER_START_CODE    0x000001bb
@@ -43,7 +43,7 @@
 
     display_bol(ds);
     display_printf(ds, -1, -1,  "%08x:", offset);
-    for(;;) {
+    for (;;) {
         ret = eb_read(s->b, offset, buf, 4);
         if (ret == 0) {
             if (badchars)
@@ -77,7 +77,7 @@
     offset += 4;
     display_printf(ds, offset_start, offset, " [%08x] ", startcode);
         
-    switch(startcode) {
+    switch (startcode) {
     case SEQ_END_CODE:
         display_printf(ds, -1, -1, "SEQ_END");
         break;
@@ -121,7 +121,7 @@
     unsigned int startcode;
     int ret;
 
-    for(;;) {
+    for (;;) {
         if (offset <= 0)
             break;
         ret = eb_read(s->b, offset, buf, 4);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]