diff options
author | Rob Clark <rob@ti.com> | 2011-01-11 21:20:51 -0600 |
---|---|---|
committer | Rob Clark <rob@ti.com> | 2011-01-11 21:20:51 -0600 |
commit | be7c27aa2c419445df1ffb7e1e2fdaa7c7955997 (patch) | |
tree | e498a57f80009d144558ec284012803c1ff369f5 | |
parent | 266e4200aac32ceaece4b76a78a8741e9c3a03b5 (diff) |
viddec: fix typo
-rw-r--r-- | src/gstducatividdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gstducatividdec.c b/src/gstducatividdec.c index 1a04e2c..3696b2f 100644 --- a/src/gstducatividdec.c +++ b/src/gstducatividdec.c @@ -383,8 +383,8 @@ gst_ducati_viddec_parse_caps (GstDucatiVidDec * self, GstStructure * s) if (gst_structure_get_int (s, "width", &w) && gst_structure_get_int (s, "height", &h)) { - h = ALIGN2 (w, 4); /* round up to MB */ - w = ALIGN2 (h, 4); /* round up to MB */ + h = ALIGN2 (h, 4); /* round up to MB */ + w = ALIGN2 (w, 4); /* round up to MB */ /* if we've already created codec, but the resolution has changed, we * need to re-create the codec: |