blob: cb7f714518111dd9f8c0b54376cfebe91cd33b02 [file] [log] [blame]
Asish Bhattacharya305d1752011-11-01 20:38:26 +05301/*
2 * Copyright (c) 2011, 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.h>
17#include <sound/q6asm.h>
Steve Mucklef132c6c2012-06-06 18:30:57 -070018#include <sound/compress_params.h>
Asish Bhattacharya305d1752011-11-01 20:38:26 +053019#include <sound/compress_offload.h>
20#include <sound/compress_driver.h>
21
22#include "msm-pcm-q6.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*/