X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=dpvsimpledecode.h;h=2d1f99c9cdee8b103cf35159e678d010aff41c76;hb=3869bc4ae01a780a71af98e2f49c5b2f9297c9ae;hp=36e61a41724453ec58b6db42e54e1b28fa6fa2d7;hpb=b0671fcac8564a24ec6d499c0a574d71d937ea7d;p=xonotic%2Fdarkplaces.git diff --git a/dpvsimpledecode.h b/dpvsimpledecode.h index 36e61a41..2d1f99c9 100644 --- a/dpvsimpledecode.h +++ b/dpvsimpledecode.h @@ -34,16 +34,10 @@ unsigned int dpvsimpledecode_getwidth(void *stream); // returns the height of the image data unsigned int dpvsimpledecode_getheight(void *stream); -// returns the sound sample rate of the stream -unsigned int dpvsimpledecode_getsoundrate(void *stream); - // returns the framerate of the stream double dpvsimpledecode_getframerate(void *stream); // decodes a video frame to the supplied output pixels int dpvsimpledecode_video(void *stream, void *imagedata, unsigned int Rmask, unsigned int Gmask, unsigned int Bmask, unsigned int bytesperpixel, int imagebytesperrow); -// reads some sound -// (note: sound is 16bit stereo native-endian, left channel first) -int dpvsimpledecode_audio(void *stream, short *soundbuffer, int requestedlength); #endif