Browse Source

avdevice/dshow_crossbar: Avoid mixing declarations and statements

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Michael Niedermayer 10 years ago
parent
commit
15848c623d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      libavdevice/dshow_crossbar.c

+ 2 - 1
libavdevice/dshow_crossbar.c

@@ -75,6 +75,7 @@ setup_crossbar_options(IAMCrossbar *cross_bar, enum dshowDeviceType devtype, AVF
 
     for (i = 0; i < count_output_pins; i++)
     {
+        int j;
         long related_pin, pin_type, route_to_pin;
         hr = IAMCrossbar_get_CrossbarPinInfo(cross_bar, FALSE, i, &related_pin, &pin_type);
         if (pin_type == PhysConn_Video_VideoDecoder) {
@@ -109,7 +110,7 @@ setup_crossbar_options(IAMCrossbar *cross_bar, enum dshowDeviceType devtype, AVF
         av_log(avctx, log_level, "current input pin: %ld ", route_to_pin);
         av_log(avctx, log_level, "compatible input pins: ");
 
-        for (int j = 0; j < count_input_pins; j++)
+        for (j = 0; j < count_input_pins; j++)
         {
             hr = IAMCrossbar_CanRoute(cross_bar, i, j);
             if (hr == S_OK)