diff bethsoftvideo.h @ 4812:d9cff0d54fdd libavcodec

use shorter names for the block type enum
author michael
date Sat, 07 Apr 2007 23:10:22 +0000
parents 2e9455fd2b8c
children 2137206961c9
line wrap: on
line diff
--- a/bethsoftvideo.h	Sat Apr 07 23:02:43 2007 +0000
+++ b/bethsoftvideo.h	Sat Apr 07 23:10:22 2007 +0000
@@ -1,12 +1,10 @@
-#define VID_PALETTE_NUMCOLORS 256
-
 enum BethsoftVidBlockType
 {
     PALETTE_BLOCK = 0x02,
     FIRST_AUDIO_BLOCK = 0x7c,
     AUDIO_BLOCK = 0x7d,
-    VIDEO_FULL_FRAME_BLOCK = 0x03,
-    VIDEO_DIFFERENCE_FRAME_BLOCK = 0x01,
-    VIDEO_YOFFSET_DIFFERENCE_FRAME_BLOCK = 0x04,
-    FINISHED_BLOCK = 0x14,
+    VIDEO_I_FRAME       = 0x03,
+    VIDEO_P_FRAME       = 0x01,
+    VIDEO_YOFF_P_FRAME  = 0x04,
+    EOF_BLOCK           = 0x14,
 };