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:
authorPeter Schlaile <peter@schlaile.de>2007-09-23 21:26:22 +0400
committerPeter Schlaile <peter@schlaile.de>2007-09-23 21:26:22 +0400
commitba6a09f31d3fff40d316d856795345d085d79a0f (patch)
tree68c8d1c8a2d54e98998ff57d612733b1613c22ad /source/blender/imbuf
parent3596175859ba2c90a8e6838e7bb401ca713274c3 (diff)
== Sequencer / FFMPEG ==
Confused RGBA32 with RGBA.
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/anim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/anim.c b/source/blender/imbuf/intern/anim.c
index 6ee1a6bde32..e99c35e45ce 100644
--- a/source/blender/imbuf/intern/anim.c
+++ b/source/blender/imbuf/intern/anim.c
@@ -617,7 +617,7 @@ static int startffmpeg(struct anim * anim) {
anim->pCodecCtx->pix_fmt,
anim->pCodecCtx->width,
anim->pCodecCtx->height,
- PIX_FMT_RGBA32,
+ PIX_FMT_RGBA,
SWS_FAST_BILINEAR | SWS_PRINT_INFO,
NULL, NULL, NULL);