mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
8df1c8a278
Original commit message from CVS: Added DivX ;-) support by using the wine .dll loader. you must unzip binaries.zip from http://divx.euro.ru/binaries.zip into the win32 directory **of the source tree**. Extended and bugfixed thr riff parser to support DivX ;-) Extended the avi parser to support DivX ;-) and MPEG Layer 3. Fixed a bug in mpg123. Sound still is seriously wrong with layer 3. Fixed MPEG2 playback in gstplay. Time indication in gstplay is temporarly broken.
15 lines
532 B
C
15 lines
532 B
C
#ifdef __WINE_PSHPACK_H
|
|
#undef __WINE_PSHPACK_H
|
|
|
|
#if defined(__GNUC__) || defined(__SUNPRO_C)
|
|
#pragma pack()
|
|
#elif defined(__SUNPRO_CC)
|
|
#warning "Assumes default alignment is 4"
|
|
#pragma pack(4)
|
|
#elif !defined(RC_INVOKED)
|
|
#error "Restoration of the previous alignment isn't supported by the compiler"
|
|
#endif /* defined(__GNUC__) || defined(__SUNPRO_C) ; !defined(RC_INVOKED) */
|
|
|
|
#else /* defined(__WINE_PSHPACK_H) */
|
|
#error "Popping alignment isn't possible since no alignment has been pushed"
|
|
#endif /* defined(__WINE_PSHPACK_H) */
|