Browse code

indent

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

Michael Niedermayer authored on 2008/04/19 19:48:50
Showing 1 changed files
... ...
@@ -67,20 +67,20 @@ get_next:
67 67
     *poutbuf = buf;
68 68
     *poutbuf_size = buf_size;
69 69
 
70
-                    /* update codec info */
71
-                    avctx->sample_rate = s->sample_rate;
72
-                    /* allow downmixing to stereo (or mono for AC3) */
73
-                    if(avctx->request_channels > 0 &&
74
-                            avctx->request_channels < s->channels &&
75
-                            (avctx->request_channels <= 2 ||
76
-                            (avctx->request_channels == 1 &&
77
-                            avctx->codec_id == CODEC_ID_AC3))) {
78
-                        avctx->channels = avctx->request_channels;
79
-                    } else {
80
-                        avctx->channels = s->channels;
81
-                    }
82
-                    avctx->bit_rate = s->bit_rate;
83
-                    avctx->frame_size = s->samples;
70
+    /* update codec info */
71
+    avctx->sample_rate = s->sample_rate;
72
+    /* allow downmixing to stereo (or mono for AC3) */
73
+    if(avctx->request_channels > 0 &&
74
+            avctx->request_channels < s->channels &&
75
+            (avctx->request_channels <= 2 ||
76
+            (avctx->request_channels == 1 &&
77
+            avctx->codec_id == CODEC_ID_AC3))) {
78
+        avctx->channels = avctx->request_channels;
79
+    } else {
80
+        avctx->channels = s->channels;
81
+    }
82
+    avctx->bit_rate = s->bit_rate;
83
+    avctx->frame_size = s->samples;
84 84
 
85 85
     return i;
86 86
 }