blob: 9830300332e19424629b8bc1535c95ccc790f55d [file] [log] [blame]
Bharath Ramachandramurthy4d99b502012-05-04 18:52:52 -07001/*
2 * Copyright (c) 2012, Code Aurora Forum. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 and
6 * only version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14#ifndef _MSM_COMPR_H
15#define _MSM_COMPR_H
16#include <sound/apr_audio-v2.h>
17#include <sound/q6asm-v2.h>
Phani Kumar Uppalapati831a0b12012-06-12 15:12:19 -070018#include <sound/compress_params.h>
Bharath Ramachandramurthy4d99b502012-05-04 18:52:52 -070019#include <sound/compress_offload.h>
20#include <sound/compress_driver.h>
21
22#include "msm-pcm-q6-v2.h"
23
24struct compr_info {
25 struct snd_compr_caps compr_cap;
26 struct snd_compr_codec_caps codec_caps;
27 struct snd_compr_params codec_param;
28};
29
30struct compr_audio {
31 struct msm_audio prtd;
32 struct compr_info info;
33 uint32_t codec;
34};
35
36#endif /*_MSM_COMPR_H*/