|
From: libvidcap c. m. <lib...@li...> - 2007-10-09 14:30:42
|
Revision: 42
http://libvidcap.svn.sourceforge.net/libvidcap/?rev=42&view=rev
Author: jpgrayson
Date: 2007-10-09 07:30:40 -0700 (Tue, 09 Oct 2007)
Log Message:
-----------
Whitespace, comments
Modified Paths:
--------------
trunk/include/vidcap/converters.h
trunk/src/sapi.c
Modified: trunk/include/vidcap/converters.h
===================================================================
--- trunk/include/vidcap/converters.h 2007-10-06 19:43:23 UTC (rev 41)
+++ trunk/include/vidcap/converters.h 2007-10-09 14:30:40 UTC (rev 42)
@@ -31,28 +31,22 @@
#endif
int
-vidcap_i420_to_rgb32(int width, int height, const char * src,
- char * dest);
+vidcap_i420_to_rgb32(int width, int height, const char * src, char * dest);
int
-vidcap_i420_to_yuy2(int width, int height, const char * src,
- char * dest);
+vidcap_i420_to_yuy2(int width, int height, const char * src, char * dest);
int
-vidcap_yuy2_to_i420(int width, int height, const char * src,
- char * dest);
+vidcap_yuy2_to_i420(int width, int height, const char * src, char * dest);
int
-vidcap_yuy2_to_rgb32(int width, int height, const char * src,
- char * dest);
+vidcap_yuy2_to_rgb32(int width, int height, const char * src, char * dest);
int
-vidcap_rgb32_to_i420(int width, int height, const char * src,
- char * dest);
+vidcap_rgb32_to_i420(int width, int height, const char * src, char * dest);
int
-vidcap_rgb32_to_yuy2(int width, int height, const char * src,
- char * dest);
+vidcap_rgb32_to_yuy2(int width, int height, const char * src, char * dest);
#ifdef __cplusplus
}
Modified: trunk/src/sapi.c
===================================================================
--- trunk/src/sapi.c 2007-10-06 19:43:23 UTC (rev 41)
+++ trunk/src/sapi.c 2007-10-09 14:30:40 UTC (rev 42)
@@ -217,9 +217,10 @@
{
struct vidcap_capture_info cap_info;
- // NOTE: We may be called here by a notification thread while
- // the main thread is clearing the src_ctx ->capture_data and
- // ->capture_callback from within vidcap_src_capture_stop()
+ /* NOTE: We may be called here by a notification thread while the
+ * main thread is clearing capture_data and capture_callback from
+ * within vidcap_src_capture_stop().
+ */
vidcap_src_capture_callback cap_callback = src_ctx->capture_callback;
void * cap_data = src_ctx->capture_data;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|