Browse code

Cosmetics: indentation

Originally committed as revision 22756 to svn://svn.ffmpeg.org/ffmpeg/trunk

Bobby Bingham authored on 2010/04/01 15:41:27
Showing 1 changed files
... ...
@@ -1650,9 +1650,9 @@ static int input_request_frame(AVFilterLink *link)
1650 1650
     if(priv->use_dr1) {
1651 1651
         picref = avfilter_ref_pic(priv->frame->opaque, ~0);
1652 1652
     } else {
1653
-    picref = avfilter_get_video_buffer(link, AV_PERM_WRITE, link->w, link->h);
1654
-    av_picture_copy((AVPicture *)&picref->data, (AVPicture *)priv->frame,
1655
-                    picref->pic->format, link->w, link->h);
1653
+        picref = avfilter_get_video_buffer(link, AV_PERM_WRITE, link->w, link->h);
1654
+        av_picture_copy((AVPicture *)&picref->data, (AVPicture *)priv->frame,
1655
+                        picref->pic->format, link->w, link->h);
1656 1656
     }
1657 1657
     av_free_packet(&pkt);
1658 1658