Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/avi/intern/options.c')
-rw-r--r--source/blender/avi/intern/options.c18
1 files changed, 7 insertions, 11 deletions
diff --git a/source/blender/avi/intern/options.c b/source/blender/avi/intern/options.c
index bab02ec2a40..15ec40ade8c 100644
--- a/source/blender/avi/intern/options.c
+++ b/source/blender/avi/intern/options.c
@@ -36,10 +36,6 @@
#include "avi_intern.h"
#include "endian.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
/* avi_set_compress_options gets its own file... now don't WE feel important? */
AviError AVI_set_compress_option (AviMovie *movie, int option_type, int stream, AviOption option, void *opt_data) {
@@ -109,17 +105,17 @@ AviError AVI_set_compress_option (AviMovie *movie, int option_type, int stream,
}
- fseek (movie->fp, movie->offset_table[0], SEEK_SET);
- awrite (movie, movie->header, 1, sizeof(AviMainHeader), movie->fp, AVI_MAINH);
+ fseek (movie->fp, movie->offset_table[0], SEEK_SET);
+ awrite (movie, movie->header, 1, sizeof(AviMainHeader), movie->fp, AVI_MAINH);
- break;
+ break;
case AVI_OPTION_TYPE_STRH:
- break;
+ break;
case AVI_OPTION_TYPE_STRF:
- break;
+ break;
default:
- return AVI_ERROR_OPTION;
- break;
+ return AVI_ERROR_OPTION;
+ break;
}
return AVI_ERROR_NONE;