annotate loader/wine/poppack.h @ 7962:1d2d47aa8717

some card/mobo combos can't handle buffers larger than 128kB, we change the default buffer to 128kB, add warnings if the buffer becomes full, add a commandline option to enlarge the buffer and give suggestions to users to lessen the buffer size requirements (lower quality/resolution). 128kB should, however, be enough for everybody :-). Bug reported by Brain Edmonds, cause explained (to allow me to fix the driver) by Ronald Bultje (mjpegtools developer)
author rik
date Tue, 29 Oct 2002 19:06:26 +0000
parents 3b5f5d1c5041
children efc774a1e5a4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1 #ifdef __WINE_PSHPACK_H
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2 #undef __WINE_PSHPACK_H
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
3
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
4 #if defined(__GNUC__) || defined(__SUNPRO_C)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
5 #pragma pack()
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
6 #elif defined(__SUNPRO_CC)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
7 #warning "Assumes default alignment is 4"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
8 #pragma pack(4)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
9 #elif !defined(RC_INVOKED)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
10 #error "Restoration of the previous alignment isn't supported by the compiler"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
11 #endif /* defined(__GNUC__) || defined(__SUNPRO_C) ; !defined(RC_INVOKED) */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
12
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
13 #else /* defined(__WINE_PSHPACK_H) */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
14 #error "Popping alignment isn't possible since no alignment has been pushed"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
15 #endif /* defined(__WINE_PSHPACK_H) */