1
0
Fork 0
forked from len0rd/rockbox

Fix warning in WMA Pro and remove a c++ comment.

Change-Id: Id9b50c1fdeca4d87f158da717de8958330f027ef
This commit is contained in:
Michael Giacomelli 2014-11-28 22:43:56 +01:00
parent aa2c55e105
commit d924c83066
2 changed files with 3 additions and 4 deletions

View file

@ -50,7 +50,7 @@ enum codec_status codec_run(void)
int audiobufsize; /* Payload size */
int packetlength = 0; /* Logical packet size (minus the header size) */
int outlen = 0; /* Number of bytes written to the output buffer */
int pktcnt = 0; /* Count of the packets played */
unsigned int pktcnt = 0; /* Count of the packets played */
uint8_t *data; /* Pointer to decoder input buffer */
int size; /* Size of the input frame to the decoder */
intptr_t param;