missed this file when adding option to disable frameserver

This commit is contained in:
Campbell Barton
2011-07-22 00:34:03 +00:00
parent 03bae345be
commit 6040a28f03

View File

@@ -105,13 +105,18 @@ bMovieHandle *BKE_get_movie_handle(int imtype)
mh.get_movie_path = filepath_ffmpeg;
}
#endif
#ifdef WITH_FRAMESERVER
if (imtype == R_FRAMESERVER) {
mh.start_movie = start_frameserver;
mh.append_movie = append_frameserver;
mh.end_movie = end_frameserver;
mh.get_next_frame = frameserver_loop;
}
#endif
/* incase all above are disabled */
(void)imtype;
return &mh;
}