comparison dvdread/bitreader.c @ 353:f9ebea7d24c4 src

removed unnecessary inclusion of bswap.h - patch by Erik Hovland org
author nicodvb
date Fri, 09 May 2008 21:33:31 +0000
parents a5319a5c34f4
children
comparison
equal deleted inserted replaced
352:0dae99f22e60 353:f9ebea7d24c4
21 #include <stdio.h> 21 #include <stdio.h>
22 #include <stdlib.h> 22 #include <stdlib.h>
23 #include <string.h> 23 #include <string.h>
24 #include <inttypes.h> 24 #include <inttypes.h>
25 25
26 #include "bswap.h"
27 #include "bitreader.h" 26 #include "bitreader.h"
28 27
29 int dvdread_getbits_init(getbits_state_t *state, uint8_t *start) { 28 int dvdread_getbits_init(getbits_state_t *state, uint8_t *start) {
30 if ((state == NULL) || (start == NULL)) return 0; 29 if ((state == NULL) || (start == NULL)) return 0;
31 state->start = start; 30 state->start = start;