blob: 8368e26ac1a48e65a234e3e21e07855f958e20e9 [file] [log] [blame]
Jignesh Mehta4f1b0392012-12-28 02:38:10 -08001#ifndef __UAPI_MEDIA_MSMB_BUF_MNGR_H__
2#define __UAPI_MEDIA_MSMB_BUF_MNGR_H__
3
4#define VIDIOC_MSM_BUF_MNGR_GET_BUF \
5 _IOWR('V', BASE_VIDIOC_PRIVATE + 33, struct msm_buf_mngr_info *)
6
7#define VIDIOC_MSM_BUF_MNGR_PUT_BUF \
8 _IOWR('V', BASE_VIDIOC_PRIVATE + 34, struct msm_buf_mngr_info *)
9
10#define VIDIOC_MSM_BUF_MNGR_BUF_DONE \
11 _IOWR('V', BASE_VIDIOC_PRIVATE + 35, struct msm_buf_mngr_info *)
12
13struct msm_buf_mngr_info {
14 uint32_t session_id;
15 uint32_t stream_id;
16 uint32_t index;
17};
18
19#endif