diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-09-10 03:04:48 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-09-10 03:04:48 +0000 |
commit | 6fdc5685796399e9ddea30b7dcffc607bd4c10b3 (patch) | |
tree | 4b180a7aa74abbc6b6d8be29520fa27ef0cb848c /src/libw32dll/w32codec.c | |
parent | 148419cfcd693508fc7a23158b393070a32f97d0 (diff) | |
download | xine-lib-6fdc5685796399e9ddea30b7dcffc607bd4c10b3.tar.gz xine-lib-6fdc5685796399e9ddea30b7dcffc607bd4c10b3.tar.bz2 |
a quicktime demuxer based on openquicktime, cinepack support fixed, minor bugfixes regarding buffer type handling
CVS patchset: 600
CVS date: 2001/09/10 03:04:48
Diffstat (limited to 'src/libw32dll/w32codec.c')
-rw-r--r-- | src/libw32dll/w32codec.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/libw32dll/w32codec.c b/src/libw32dll/w32codec.c index 32e2864c3..76caf4161 100644 --- a/src/libw32dll/w32codec.c +++ b/src/libw32dll/w32codec.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: w32codec.c,v 1.20 2001/09/08 18:11:41 guenter Exp $ + * $Id: w32codec.c,v 1.21 2001/09/10 03:04:48 guenter Exp $ * * routines for using w32 codecs * @@ -102,9 +102,10 @@ static char* get_vids_codec_name(w32v_decoder_t *this, this->flipped=1; return "ir32_32.dll"; - case BUF_VIDEO_CINEPACK: + case BUF_VIDEO_CINEPAK: /* Video in Cinepak format */ - this->yuv_supported=1; + this->flipped=1; + this->yuv_supported=0; return "iccvid.dll"; /*** Only 16bit .DLL available (can't load under linux) *** @@ -144,7 +145,7 @@ static int w32v_can_handle (video_decoder_t *this_gen, int buf_type) { return ( buf_type == BUF_VIDEO_IV50 || buf_type == BUF_VIDEO_IV41 || buf_type == BUF_VIDEO_IV32 || - buf_type == BUF_VIDEO_CINEPACK || + buf_type == BUF_VIDEO_CINEPAK || /* buf_type == BUF_VIDEO_ATIVCR1 || */ buf_type == BUF_VIDEO_ATIVCR2 || buf_type == BUF_VIDEO_I263); |