[FFmpeg-cvslog] lavfi: reindent after the previous commit

Stefano Sabatini git at videolan.org
Thu Jun 2 18:55:16 CEST 2011


ffmpeg | branch: master | Stefano Sabatini <stefano.sabatini-lala at poste.it> | Thu Jun  2 16:36:12 2011 +0200| [665e608c8d920d83216e1b8fd1445ee335528f13] | committer: Stefano Sabatini

lavfi: reindent after the previous commit

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=665e608c8d920d83216e1b8fd1445ee335528f13
---

 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));



More information about the ffmpeg-cvslog mailing list