comparison vm/decoder.c @ 285:52877d182e96 src

moved all header inclusions from .h to .c files; my word, I've never seen such a horrible entanglement as in this mess
author nicodvb
date Fri, 20 Apr 2007 23:24:59 +0000
parents 130c10495b66
children 6c0def2b7e39
comparison
equal deleted inserted replaced
284:a5f395f352c9 285:52877d182e96
29 29
30 #include <stdio.h> 30 #include <stdio.h>
31 #include <stdlib.h> 31 #include <stdlib.h>
32 #include <inttypes.h> 32 #include <inttypes.h>
33 #include <string.h> /* For memset */ 33 #include <string.h> /* For memset */
34 #include "nav_types.h"
34 #include "ifo_types.h" /* vm_cmd_t */ 35 #include "ifo_types.h" /* vm_cmd_t */
35 36
37 #include "dvd_types.h"
38 #include "remap.h"
39 #include "decoder.h"
40 #include "vm.h"
41 #include "vmcmd.h"
42 #include "dvdnav.h"
36 #include "dvdnav_internal.h" 43 #include "dvdnav_internal.h"
37 44
38 uint32_t vm_getbits(command_t *command, int32_t start, int32_t count) { 45 uint32_t vm_getbits(command_t *command, int32_t start, int32_t count) {
39 uint64_t result = 0; 46 uint64_t result = 0;
40 uint64_t bit_mask = 0; 47 uint64_t bit_mask = 0;