/* * cx18 init/start/stop/exit stream functions * * Derived from ivtv-streams.h * * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl> * Copyright (C) 2008 Andy Walls <awalls@md.metrocast.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ u32 cx18_find_handle(struct cx18 *cx); struct cx18_stream *cx18_handle_to_stream(struct cx18 *cx, u32 handle); int cx18_streams_setup(struct cx18 *cx); int cx18_streams_register(struct cx18 *cx); void cx18_streams_cleanup(struct cx18 *cx, int unregister); #define CX18_ENC_STREAM_TYPE_IDX_FW_MDL_MIN (3) void cx18_stream_rotate_idx_mdls(struct cx18 *cx);
static inline bool cx18_stream_enabled(struct cx18_stream *s) { return s->video_dev.v4l2_dev || (s->dvb && s->dvb->enabled) || (s->type == CX18_ENC_STREAM_TYPE_IDX && s->cx->stream_buffers[CX18_ENC_STREAM_TYPE_IDX] != 0); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andy Walls | 48 | 96.00% | 2 | 66.67% |
Hans Verkuil | 2 | 4.00% | 1 | 33.33% |
Total | 50 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Andy Walls | 19 | 95.00% | 3 | 75.00% |
Tejun Heo | 1 | 5.00% | 1 | 25.00% |
Total | 20 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Andy Walls | 35 | 100.00% | 3 | 100.00% |
Total | 35 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Andy Walls | 140 | 65.73% | 9 | 64.29% |
Hans Verkuil | 71 | 33.33% | 3 | 21.43% |
Tejun Heo | 1 | 0.47% | 1 | 7.14% |
Sakari Ailus | 1 | 0.47% | 1 | 7.14% |
Total | 213 | 100.00% | 14 | 100.00% |