summaryrefslogtreecommitdiff
path: root/libavfilter/defaults.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-06-02 16:36:12 +0200
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-06-02 18:48:25 +0200
commit665e608c8d920d83216e1b8fd1445ee335528f13 (patch)
tree4f9f430a9e4c53d54ce2147ae76dcf44a6e095d2 /libavfilter/defaults.c
parent6f1dd6f45a641ca7670c7b00fbeea42420b89ada (diff)
lavfi: reindent after the previous commit
Diffstat (limited to 'libavfilter/defaults.c')
-rw-r--r--libavfilter/defaults.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/libavfilter/defaults.c b/libavfilter/defaults.c
index c83d500652..a994f36079 100644
--- a/libavfilter/defaults.c
+++ b/libavfilter/defaults.c
@@ -44,20 +44,20 @@ AVFilterBufferRef *avfilter_default_get_video_buffer(AVFilterLink *link, int per
if (pool) {
for (i = 0; i < POOL_SIZE; i++) {
- picref = pool->pic[i];
- if (picref && picref->buf->format == link->format && picref->buf->w == w && picref->buf->h == h) {
- AVFilterBuffer *pic = picref->buf;
- pool->pic[i] = NULL;
- pool->count--;
- picref->video->w = w;
- picref->video->h = h;
- picref->perms = perms | AV_PERM_READ;
- picref->format = link->format;
- pic->refcount = 1;
- memcpy(picref->data, pic->data, sizeof(picref->data));
- memcpy(picref->linesize, pic->linesize, sizeof(picref->linesize));
- return picref;
- }
+ picref = pool->pic[i];
+ if (picref && picref->buf->format == link->format && picref->buf->w == w && picref->buf->h == h) {
+ AVFilterBuffer *pic = picref->buf;
+ pool->pic[i] = NULL;
+ pool->count--;
+ picref->video->w = w;
+ picref->video->h = h;
+ picref->perms = perms | AV_PERM_READ;
+ picref->format = link->format;
+ pic->refcount = 1;
+ memcpy(picref->data, pic->data, sizeof(picref->data));
+ memcpy(picref->linesize, pic->linesize, sizeof(picref->linesize));
+ return picref;
+ }
}
} else
pool = link->pool = av_mallocz(sizeof(AVFilterPool));