Fix a typo in gas_ih264_lvl_tbl, set proper sizes for level 1.1

The table values themselves were correct, but the level values
were swapped for 1.1 and 1B.

This fixes encoding using level 1.1, which previously got the
wrong (too small) sizes (corresponding to level 1B).

Change-Id: Ic0acc58eb5841710ffd8be54bf97800fdbb40855
diff --git a/common/ih264_common_tables.c b/common/ih264_common_tables.c
index 0032771..aeee7b6 100644
--- a/common/ih264_common_tables.c
+++ b/common/ih264_common_tables.c
@@ -64,8 +64,8 @@
 const level_tables_t gas_ih264_lvl_tbl[16] =
 {
     { IH264_LEVEL_10,    1485,       99,         297,       64,         175,         64  },
-    { IH264_LEVEL_11,    1485,       99,         297,       128,        350,         64  },
-    { IH264_LEVEL_1B,    3000,       396,        675,       192,        500,         128 },
+    { IH264_LEVEL_1B,    1485,       99,         297,       128,        350,         64  },
+    { IH264_LEVEL_11,    3000,       396,        675,       192,        500,         128 },
     { IH264_LEVEL_12,    6000,       396,        1782,      384,        1000,        128 },
     { IH264_LEVEL_13,    11880,      396,        1782,      768,        2000,        128 },
     { IH264_LEVEL_20,    11880,      396,        1782,      2000,       2000,        128 },