diff options
Diffstat (limited to 'drivers/media/video/cx18/cx18-streams.h')
-rw-r--r-- | drivers/media/video/cx18/cx18-streams.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/media/video/cx18/cx18-streams.h b/drivers/media/video/cx18/cx18-streams.h index f327e947b24f..420e0a172945 100644 --- a/drivers/media/video/cx18/cx18-streams.h +++ b/drivers/media/video/cx18/cx18-streams.h | |||
@@ -4,6 +4,7 @@ | |||
4 | * Derived from ivtv-streams.h | 4 | * Derived from ivtv-streams.h |
5 | * | 5 | * |
6 | * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl> | 6 | * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl> |
7 | * Copyright (C) 2008 Andy Walls <awalls@radix.net> | ||
7 | * | 8 | * |
8 | * This program is free software; you can redistribute it and/or modify | 9 | * This program is free software; you can redistribute it and/or modify |
9 | * it under the terms of the GNU General Public License as published by | 10 | * it under the terms of the GNU General Public License as published by |
@@ -22,11 +23,15 @@ | |||
22 | */ | 23 | */ |
23 | 24 | ||
24 | u32 cx18_find_handle(struct cx18 *cx); | 25 | u32 cx18_find_handle(struct cx18 *cx); |
26 | struct cx18_stream *cx18_handle_to_stream(struct cx18 *cx, u32 handle); | ||
25 | int cx18_streams_setup(struct cx18 *cx); | 27 | int cx18_streams_setup(struct cx18 *cx); |
26 | int cx18_streams_register(struct cx18 *cx); | 28 | int cx18_streams_register(struct cx18 *cx); |
27 | void cx18_streams_cleanup(struct cx18 *cx, int unregister); | 29 | void cx18_streams_cleanup(struct cx18 *cx, int unregister); |
28 | 30 | ||
29 | /* Capture related */ | 31 | /* Capture related */ |
32 | void cx18_stream_load_fw_queue(struct cx18_stream *s); | ||
33 | struct cx18_queue *cx18_stream_put_buf_fw(struct cx18_stream *s, | ||
34 | struct cx18_buffer *buf); | ||
30 | int cx18_start_v4l2_encode_stream(struct cx18_stream *s); | 35 | int cx18_start_v4l2_encode_stream(struct cx18_stream *s); |
31 | int cx18_stop_v4l2_encode_stream(struct cx18_stream *s, int gop_end); | 36 | int cx18_stop_v4l2_encode_stream(struct cx18_stream *s, int gop_end); |
32 | 37 | ||