diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-02 16:36:12 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-02 18:48:25 +0200 |
commit | 665e608c8d920d83216e1b8fd1445ee335528f13 (patch) | |
tree | 4f9f430a9e4c53d54ce2147ae76dcf44a6e095d2 /libavfilter | |
parent | 6f1dd6f45a641ca7670c7b00fbeea42420b89ada (diff) | |
download | ffmpeg-streaming-665e608c8d920d83216e1b8fd1445ee335528f13.zip ffmpeg-streaming-665e608c8d920d83216e1b8fd1445ee335528f13.tar.gz |
lavfi: reindent after the previous commit
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/defaults.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/libavfilter/defaults.c b/libavfilter/defaults.c index c83d500..a994f36 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)); |