summaryrefslogtreecommitdiffstats
path: root/sys/v4l2
AgeCommit message (Collapse)AuthorFilesLines
2003-03-09Fix v4l/v4l2 compilation problemsRonald S. Bultje1-0/+14
Original commit message from CVS: Fix v4l/v4l2 compilation problems
2003-03-02Unification of the way to speak to v4l2 and v4l elements... Also fix a ↵Ronald S. Bultje11-328/+213
segfautl when doing gst-inspect v4l2src Original commit message from CVS: Unification of the way to speak to v4l2 and v4l elements... Also fix a segfautl when doing gst-inspect v4l2src
2003-01-10PadConnect -> PadLinkThomas Vander Stichele1-3/+3
Original commit message from CVS: PadConnect -> PadLink
2003-01-10another batch of connect->link fixes please let me know about issues and ↵Thomas Vander Stichele1-10/+10
please refrain of making them yourself, so t... Original commit message from CVS: another batch of connect->link fixes please let me know about issues and please refrain of making them yourself, so that I don't spend double the time resolving conflicts
2002-12-08parallel install fixesThomas Vander Stichele1-1/+1
Original commit message from CVS: parallel install fixes
2002-11-13v4l plugins: add open/close signals v4l2 plugins: add open/close signals ↵Ronald S. Bultje9-157/+274
move source format enumeration from v4l2elem... Original commit message from CVS: v4l plugins: * add open/close signals v4l2 plugins: * add open/close signals * move source format enumeration from v4l2element to v4l2src * adapt to the final v4l2 API in kernel 2.5 (patches for 2.4 on http://bytesex.org/patches) * small tweaks
2002-10-26Let's use g_strerror() instead of strerror()Ronald S. Bultje3-31/+31
Original commit message from CVS: Let's use g_strerror() instead of strerror()
2002-10-24Use strerror() instead of sys_errlist[] (deprecated)Ronald S. Bultje3-31/+31
Original commit message from CVS: Use strerror() instead of sys_errlist[] (deprecated)
2002-09-28I'm such an idiot - these files should have been in a week agoRonald S. Bultje5-90/+28
Original commit message from CVS: I'm such an idiot - these files should have been in a week ago
2002-09-20This patch fixes some issues caused by design issues in video4linux, adds ↵Ronald S. Bultje2-57/+67
some nicety to video4linux2 plugins and doe... Original commit message from CVS: This patch fixes some issues caused by design issues in video4linux, adds some nicety to video4linux2 plugins and does some more evil stuff: * video4linux doesn't tell us which formats are supported by a card, so the only way to know this is by simply trying it out. This patch adds that. * v4lmjpegsink didnt have a bufferpool yet - is integrated now. * all copy() bufferpool functions have been removed since they're not needed. * v4lmjpegsink doesnt have a free() function, because hen playing the frames, all this is already handled. When the frame is not played, nothing has to be done. In total, the function is not needed. * adds a get_caps() function to v4l2src * some minor crap
2002-09-18some enhancements for capsnegoRonald S. Bultje1-2/+15
Original commit message from CVS: some enhancements for capsnego
2002-09-17This fixes the video4linux/video4linux2 debug output, which had one \n too muchRonald S. Bultje3-3/+3
Original commit message from CVS: This fixes the video4linux/video4linux2 debug output, which had one \n too much
2002-09-17This build bug accidently went into the CVSRonald S. Bultje1-3/+3
Original commit message from CVS: This build bug accidently went into the CVS
2002-09-16Add the convert functions to the source pads of the video4linux and ↵Ronald S. Bultje1-1/+65
video4linux2 source plugins Original commit message from CVS: Add the convert functions to the source pads of the video4linux and video4linux2 source plugins
2002-09-10This updates all plugins to the new API for gst_pad_try_set_capsRonald S. Bultje1-1/+1
Original commit message from CVS: This updates all plugins to the new API for gst_pad_try_set_caps
2002-09-09this adds video4linux2 source and element plugins. The division in v4l2* ↵Ronald S. Bultje11-0/+3159
plugins is the same as for v4l1 - i.e. an el... Original commit message from CVS: this adds video4linux2 source and element plugins. The division in v4l2* plugins is the same as for v4l1 - i.e. an element, a src and a sink, but there won't be separate encoding plugins (like v4lmjpegsrc) - all functionality is (thanks to video4linux2) integrated in one plugin: v4l2src. v4l2sink is still to be done, that'll come later.