Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 1 | /* |
| 2 | * cx18 init/start/stop/exit stream functions |
| 3 | * |
| 4 | * Derived from ivtv-streams.h |
| 5 | * |
| 6 | * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl> |
Andy Walls | 1ed9dcc | 2008-11-22 01:37:34 -0300 | [diff] [blame] | 7 | * Copyright (C) 2008 Andy Walls <awalls@radix.net> |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA |
| 22 | * 02111-1307 USA |
| 23 | */ |
| 24 | |
| 25 | u32 cx18_find_handle(struct cx18 *cx); |
Andy Walls | ee2d64f | 2008-11-16 01:38:19 -0300 | [diff] [blame] | 26 | struct cx18_stream *cx18_handle_to_stream(struct cx18 *cx, u32 handle); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 27 | int cx18_streams_setup(struct cx18 *cx); |
| 28 | int cx18_streams_register(struct cx18 *cx); |
Hans Verkuil | 3f98387 | 2008-05-01 10:31:12 -0300 | [diff] [blame] | 29 | void cx18_streams_cleanup(struct cx18 *cx, int unregister); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 30 | |
Andy Walls | 8711615 | 2009-04-13 22:42:43 -0300 | [diff] [blame^] | 31 | /* Related to submission of buffers to firmware */ |
Andy Walls | abb096d | 2008-12-12 15:50:27 -0300 | [diff] [blame] | 32 | void cx18_stream_load_fw_queue(struct cx18_stream *s); |
Andy Walls | 66c2a6b | 2008-12-08 23:02:45 -0300 | [diff] [blame] | 33 | struct cx18_queue *cx18_stream_put_buf_fw(struct cx18_stream *s, |
| 34 | struct cx18_buffer *buf); |
Andy Walls | 8711615 | 2009-04-13 22:42:43 -0300 | [diff] [blame^] | 35 | void cx18_out_work_handler(struct work_struct *work); |
| 36 | |
| 37 | /* Capture related */ |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 38 | int cx18_start_v4l2_encode_stream(struct cx18_stream *s); |
| 39 | int cx18_stop_v4l2_encode_stream(struct cx18_stream *s, int gop_end); |
| 40 | |
| 41 | void cx18_stop_all_captures(struct cx18 *cx); |