]> git.tuebingen.mpg.de Git - paraslash.git/commit
wmadec: Remove two pointless variables.
authorAndre Noll <maan@tuebingen.mpg.de>
Thu, 8 Dec 2016 23:22:57 +0000 (00:22 +0100)
committerAndre Noll <maan@tuebingen.mpg.de>
Sun, 11 Dec 2016 12:13:33 +0000 (13:13 +0100)
commit83155daccd3c33663ebf419315142c2d26bb59cf
tree8275bd398d4c423b584c618610ff168cc68be159
parentd565f0e8aedfb8efab7028de03ce35eb141df8d1
wmadec: Remove two pointless variables.

The local variables n and incr of wma_decode_frame() shadow the
values of their counterparts in struct private_wmadec_data, and they
remain constant within the function. Referring directly to the private
structure instead makes the code shorter and improves readability.
wmadec_filter.c