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:
authorCampbell Barton <ideasman42@gmail.com>2010-06-05 19:31:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-06-05 19:31:55 +0400
commit556b57febf9191210474678537322e86f3ef8cd9 (patch)
tree9bcb13af3da57c4279e90b0ef3ea3756953e7b9a /source/blender/imbuf
parent2403214cb474fe71c0fd9b42a6c0155c8159b7b3 (diff)
get rid of some warnings,
removed NG_LoopBackNetworkDeviceInterface::GetNetworkVersion(), wasnt used anywhere.
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/anim.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/anim.c b/source/blender/imbuf/intern/anim.c
index 2cb63b7274c..67c443d051e 100644
--- a/source/blender/imbuf/intern/anim.c
+++ b/source/blender/imbuf/intern/anim.c
@@ -816,7 +816,7 @@ static ImBuf * ffmpeg_fetchibuf(struct anim * anim, int position) {
unsigned char* top;
sws_scale(anim->img_convert_ctx,
- (const uint8_t * const *)input->data,
+ (uint8_t **)input->data,
input->linesize,
0,
anim->pCodecCtx->height,
@@ -875,7 +875,7 @@ static ImBuf * ffmpeg_fetchibuf(struct anim * anim, int position) {
unsigned char* r;
sws_scale(anim->img_convert_ctx,
- (const uint8_t * const *)input->data,
+ (uint8_t **)input->data,
input->linesize,
0,
anim->pCodecCtx->height,