Commit 15fb2653 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Use unsigned. Retain layout and byte size due to ABI freeze.

parent 88f8b624
......@@ -69,9 +69,9 @@ struct audio_format_t
*/
/* FIXME ? (used by the codecs) */
int i_channels;
int i_blockalign;
int i_bitspersample;
unsigned i_channels;
unsigned i_blockalign;
unsigned i_bitspersample;
};
#ifdef WORDS_BIGENDIAN
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment