Fix documentation of check_filter_arg().
[paraslash.git] / opus_common.h
index 71923f119b10806ca6fb973dc66ea0179665edfc..2160f15192f30a8f1b5fde0be38fcd127a89681a 100644 (file)
@@ -1,3 +1,14 @@
+/*
+ * Copyright (C) 2013 Andre Noll <maan@tuebingen.mpg.de>
+ *
+ * Licensed under the GPL v2. For licencing details see COPYING.
+ */
+
+/**
+ * \file opus_common.h
+ * Common declarations for the opus decoder and audio format handler.
+ */
+
 /** Various bits stored in the header of an opus stream. */
 struct opus_header {
        /** lower 4 bits of the version byte, must be 0. */
@@ -5,11 +16,11 @@ struct opus_header {
        /** 1..255 */
        int channels;
        /** Number of bytes to skip from the beginning. */
-       int preskip;
+       uint16_t preskip;
        /** Sample rate of the input stream, used by the audio format handler. */
-       ogg_uint32_t input_sample_rate;
+       uint32_t input_sample_rate;
        /** In dB, should be zero whenever possible. */
-       int gain;
+       uint16_t gain;
        /** Number of logical streams (usually 1). */
        int nb_streams;
        /** Number of streams to decode as 2 channel streams. */