Bharath Ramachandramurthy | 4d99b50 | 2012-05-04 18:52:52 -0700 | [diff] [blame] | 1 | /* |
| 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 Uppalapati | 831a0b1 | 2012-06-12 15:12:19 -0700 | [diff] [blame] | 18 | #include <sound/compress_params.h> |
Bharath Ramachandramurthy | 4d99b50 | 2012-05-04 18:52:52 -0700 | [diff] [blame] | 19 | #include <sound/compress_offload.h> |
| 20 | #include <sound/compress_driver.h> |
| 21 | |
| 22 | #include "msm-pcm-q6-v2.h" |
| 23 | |
| 24 | struct 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 | |
| 30 | struct compr_audio { |
| 31 | struct msm_audio prtd; |
| 32 | struct compr_info info; |
| 33 | uint32_t codec; |
| 34 | }; |
| 35 | |
| 36 | #endif /*_MSM_COMPR_H*/ |