Robert Wenzlaff's fix for AVI_JPEGS.

Kent
--
mein@cs.umn.edu
This commit is contained in:
Kent Mein 2002-11-22 15:59:38 +00:00
parent 1f0fff0dc5
commit d44f2c6dcc

@ -27,7 +27,7 @@
* *
* The Original Code is: all of this file. * The Original Code is: all of this file.
* *
* Contributor(s): none yet. * Contributor(s): Robert Wenzlaff
* *
* ***** END GPL/BL DUAL LICENSE BLOCK ***** * ***** END GPL/BL DUAL LICENSE BLOCK *****
* *
@ -50,6 +50,10 @@
#include "IMB_imbuf_types.h" #include "IMB_imbuf_types.h"
#include "IMB_imbuf.h" #include "IMB_imbuf.h"
/* RPW 11-21-2002 */
#include "DNA_scene_types.h"
/* RPW - End */
static AviMovie *avi=NULL; static AviMovie *avi=NULL;
static int sframe; static int sframe;
@ -88,7 +92,10 @@ void start_avi(void)
avi = MEM_mallocN (sizeof(AviMovie), "avimovie"); avi = MEM_mallocN (sizeof(AviMovie), "avimovie");
if (R.r.imtype != AVI_FORMAT_MJPEG) format = AVI_FORMAT_AVI_RGB; /* RPW 11-21-2002
if (R.r.imtype != AVI_FORMAT_MJPEG) format = AVI_FORMAT_AVI_RGB;
*/
if (R.r.imtype != R_AVIJPEG ) format = AVI_FORMAT_AVI_RGB;
else format = AVI_FORMAT_MJPEG; else format = AVI_FORMAT_MJPEG;
if (AVI_open_compress (name, avi, 1, format) != AVI_ERROR_NONE) { if (AVI_open_compress (name, avi, 1, format) != AVI_ERROR_NONE) {