mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-19 14:19:58 +01:00
923 lines
21 KiB
C
923 lines
21 KiB
C
/* veejay - Linux VeeJay Unicap interface
|
|
* (C) 2002-2006 Niels Elburg <nelburg@looze.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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
#include <config.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h> // for memset
|
|
#include <unicap.h>
|
|
#include <unicap_status.h>
|
|
|
|
#include <libvjmsg/vj-common.h>
|
|
#include <libvjmem/vjmem.h>
|
|
#include <libyuv/yuvconv.h>
|
|
#include <libvevo/libvevo.h>
|
|
#include <vevosample/vj-unicap.h>
|
|
#include <veejay/defs.h>
|
|
#include <ffmpeg/avutil.h>
|
|
#include <pthread.h>
|
|
#ifdef STRICT_CHECKING
|
|
#include <assert.h>
|
|
#endif
|
|
|
|
typedef struct
|
|
{
|
|
unicap_handle_t handle;
|
|
unicap_device_t device;
|
|
unicap_format_t format_spec;
|
|
unicap_format_t format;
|
|
unicap_data_buffer_t buffer;
|
|
unicap_data_buffer_t *buf;
|
|
pthread_mutex_t mutex;
|
|
pthread_t thread;
|
|
uint8_t *priv_buf;
|
|
int state;
|
|
int sizes[3];
|
|
int active;
|
|
int deinterlace;
|
|
int rgb;
|
|
int width;
|
|
int pixfmt;
|
|
int shift;
|
|
int height;
|
|
void *sampler;
|
|
} vj_unicap_t;
|
|
|
|
|
|
typedef struct
|
|
{
|
|
unicap_handle_t handle;
|
|
unicap_device_t device;
|
|
unicap_format_t format_spec;
|
|
unicap_format_t format;
|
|
unicap_data_buffer_t buffer;
|
|
unicap_data_buffer_t *returned_buffer;
|
|
void *device_list;
|
|
int num_devices;
|
|
} unicap_driver_t;
|
|
|
|
#define BUFFERS 2
|
|
|
|
static void *unicap_reader_thread(void *data);
|
|
static void lock_(vj_unicap_t *t)
|
|
{
|
|
pthread_mutex_lock( &(t->mutex ));
|
|
}
|
|
|
|
static void unlock_(vj_unicap_t *t)
|
|
{
|
|
pthread_mutex_unlock( &(t->mutex ));
|
|
}
|
|
|
|
|
|
|
|
|
|
static int vj_unicap_scan_enumerate_devices(void *unicap)
|
|
{
|
|
int i;
|
|
unicap_driver_t *ud = (unicap_driver_t*) unicap;
|
|
char key[64];
|
|
|
|
for( i = 0; SUCCESS( unicap_enumerate_devices( NULL, &(ud->device), i ) ); i++ )
|
|
{
|
|
int j;
|
|
char *device_name = strdup( ud->device.identifier );
|
|
void *device_port = vpn( VEVO_ANONYMOUS_PORT );
|
|
char *device_location = strdup( ud->device.device );
|
|
|
|
int error = vevo_property_set( device_port,
|
|
"name",
|
|
VEVO_ATOM_TYPE_STRING,
|
|
1,
|
|
&device_name);
|
|
|
|
#ifdef STRICT_CHECKING
|
|
assert( error == VEVO_NO_ERROR );
|
|
#endif
|
|
sprintf(key ,"%d", i );
|
|
error = vevo_property_set( ud->device_list, key, VEVO_ATOM_TYPE_PORTPTR,1,&device_port );
|
|
|
|
#ifdef STRICT_CHECKING
|
|
assert( error == VEVO_NO_ERROR );
|
|
#endif
|
|
|
|
|
|
error = vevo_property_set( device_port,
|
|
"device",
|
|
VEVO_ATOM_TYPE_STRING,
|
|
1,
|
|
&device_location );
|
|
|
|
|
|
veejay_msg(2, "\t'%s' at device %s",device_name, device_location );
|
|
|
|
free( device_location );
|
|
free( device_name );
|
|
|
|
#ifdef STRICT_CHECKING
|
|
assert( error == VEVO_NO_ERROR );
|
|
#endif
|
|
}
|
|
return i;
|
|
}
|
|
|
|
void *vj_unicap_init(void)
|
|
{
|
|
unicap_driver_t *ud = (unicap_driver_t*) vj_malloc(sizeof(unicap_driver_t));
|
|
memset( ud,0,sizeof(unicap_driver_t));
|
|
ud->device_list = vpn( VEVO_ANONYMOUS_PORT );
|
|
ud->num_devices = vj_unicap_scan_enumerate_devices( (void*) ud );
|
|
veejay_msg(2, "Found %d capture devices on this system", ud->num_devices);
|
|
return ud;
|
|
}
|
|
|
|
void *vj_unicap_get_devices(void *in)
|
|
{
|
|
unicap_driver_t *ud = (unicap_driver_t*) in;
|
|
return ud->device_list;
|
|
|
|
}
|
|
|
|
void vj_unicap_deinit(void *dud )
|
|
{
|
|
unicap_driver_t *ud = (unicap_driver_t*) dud;
|
|
vevo_port_recursive_free( ud->device_list );
|
|
free(ud);
|
|
dud = NULL;
|
|
}
|
|
/*
|
|
int vj_unicap_set_property( void *ud, char *key, int atom_type, void *val )
|
|
{
|
|
unicap_property_t property;
|
|
unicap_property_t property_spec;
|
|
int i;
|
|
if(atom_type != VEVO_ATOM_TYPE_STRING && atom_type != VEVO_ATOM_TYPE_DOUBLE )
|
|
return 0;
|
|
|
|
unicap_void_property( &property_spec );
|
|
vj_unicap_t *vut = (vj_unicap_t*) ud;
|
|
|
|
for( i = 0; SUCCESS( unicap_enumerate_properties( vut->handle,
|
|
&property_spec, &property, i ) ); i ++ )
|
|
{
|
|
unicap_get_property( vut->handle, &property);
|
|
|
|
if( strcmp(property.identifier, key) == 0 )
|
|
{
|
|
if(atom_type == VEVO_ATOM_TYPE_STRING)
|
|
{
|
|
char *str = (char*) val;
|
|
sprintf( property.menu_item , "%s", str);
|
|
}
|
|
else
|
|
{
|
|
if(atom_type == VEVO_ATOM_TYPE_DOUBLE)
|
|
{
|
|
memcpy(&property.value, val, sizeof(double));
|
|
}
|
|
}
|
|
|
|
unicap_set_property( vut->handle, &property );
|
|
break;
|
|
}
|
|
}
|
|
return 1;
|
|
}
|
|
*/
|
|
|
|
void vj_unicap_pack_menu( void *ud, char *key , void *osc, void *msg )
|
|
{
|
|
unicap_property_t property;
|
|
unicap_property_t property_spec;
|
|
int i;
|
|
unicap_void_property( &property_spec );
|
|
unicap_void_property( &property );
|
|
vj_unicap_t *vut = (vj_unicap_t*) ud;
|
|
for( i = 0; SUCCESS( unicap_enumerate_properties( vut->handle,
|
|
&property_spec, &property, i ) ); i ++ )
|
|
{
|
|
unicap_get_property( vut->handle, &property);
|
|
if( strcmp( property.identifier, key ) == 0 )
|
|
{
|
|
int n = property.menu.menu_item_count;
|
|
int j;
|
|
for( j = 0; j < n ; j ++ )
|
|
{
|
|
veejay_message_add_argument( osc, msg, "s",
|
|
property.menu.menu_items[j] );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
int vj_unicap_property_is_menu( void *ud, char *key )
|
|
{
|
|
unicap_property_t property;
|
|
unicap_property_t property_spec;
|
|
int i;
|
|
unicap_void_property( &property_spec );
|
|
unicap_void_property( &property );
|
|
vj_unicap_t *vut = (vj_unicap_t*) ud;
|
|
|
|
for( i = 0; SUCCESS( unicap_enumerate_properties( vut->handle,
|
|
&property_spec, &property, i ) ); i ++ )
|
|
{
|
|
unicap_get_property( vut->handle, &property);
|
|
if( strcmp( property.identifier, key ) == 0 )
|
|
{
|
|
if( property.type == UNICAP_PROPERTY_TYPE_MENU )
|
|
return 1;
|
|
else
|
|
return 0;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
int vj_unicap_property_is_range( void *ud, char *key )
|
|
{
|
|
unicap_property_t property;
|
|
unicap_property_t property_spec;
|
|
int i;
|
|
unicap_void_property( &property_spec );
|
|
unicap_void_property( &property );
|
|
vj_unicap_t *vut = (vj_unicap_t*) ud;
|
|
|
|
for( i = 0; SUCCESS( unicap_enumerate_properties( vut->handle,
|
|
&property_spec, &property, i ) ); i ++ )
|
|
{
|
|
unicap_get_property( vut->handle, &property);
|
|
if( strcmp( property.identifier, key ) == 0 )
|
|
{
|
|
if( property.type == UNICAP_PROPERTY_TYPE_RANGE )
|
|
return 1;
|
|
else
|
|
return 0;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int vj_unicap_select_value( void *ud, char *key, int atom_type, void *val )
|
|
{
|
|
unicap_property_t property;
|
|
unicap_property_t property_spec;
|
|
int i;
|
|
unicap_void_property( &property_spec );
|
|
unicap_void_property( &property );
|
|
vj_unicap_t *vut = (vj_unicap_t*) ud;
|
|
// memset( &property,0 ,sizeof( unicap_property_t));
|
|
|
|
for( i = 0; SUCCESS( unicap_enumerate_properties( vut->handle,
|
|
&property_spec, &property, i ) ); i ++ )
|
|
{
|
|
// memset( &property,0 ,sizeof( unicap_property_t));
|
|
|
|
unicap_get_property( vut->handle, &property);
|
|
if( strcmp( property.identifier, key ) == 0 )
|
|
{
|
|
|
|
if( property.type == UNICAP_PROPERTY_TYPE_MENU )
|
|
{
|
|
int n = property.menu.menu_item_count;
|
|
#ifdef STRICT_CHECKING
|
|
assert( atom_type == VEVO_ATOM_TYPE_DOUBLE );
|
|
#endif
|
|
int idx = (int) *( (double*) val );
|
|
veejay_msg(0, "To menu item %d, cur = '%s', new = '%s'",
|
|
idx,
|
|
property.menu_item,
|
|
property.menu.menu_items[idx] );
|
|
|
|
strcpy( property.menu_item, property.menu.menu_items[idx] );
|
|
|
|
unicap_set_property( vut->handle, &property );
|
|
|
|
|
|
veejay_msg(0,"changed menu item %d to %s", idx, property.menu_item );
|
|
|
|
return 1;
|
|
}
|
|
if( property.type == UNICAP_PROPERTY_TYPE_RANGE )
|
|
{
|
|
#ifdef STRICT_CHECKING
|
|
assert( atom_type == VEVO_ATOM_TYPE_DOUBLE) ;
|
|
#endif
|
|
double fval = (double) *( (double*) val);
|
|
if(fval < property.range.min)
|
|
fval = property.range.min;
|
|
else if(fval > property.range.max)
|
|
fval = property.range.max;
|
|
property.value = (double) *((double*) val);
|
|
unicap_set_property( vut->handle, &property );
|
|
veejay_msg(0, "Changed range value to %f", property.value );
|
|
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int vj_unicap_get_range( void *ud, char *key, double *min , double *max )
|
|
{
|
|
unicap_property_t property;
|
|
unicap_property_t property_spec;
|
|
int i;
|
|
unicap_void_property( &property_spec );
|
|
unicap_void_property( &property );
|
|
vj_unicap_t *vut = (vj_unicap_t*) ud;
|
|
|
|
for( i = 0; SUCCESS( unicap_enumerate_properties( vut->handle,
|
|
&property_spec, &property, i ) ); i ++ )
|
|
{
|
|
// memset( &property,0,sizeof(unicap_property_t));
|
|
unicap_get_property( vut->handle, &property);
|
|
|
|
if( strcasecmp( property.identifier, key ) == 0 )
|
|
{
|
|
|
|
if( property.type == UNICAP_PROPERTY_TYPE_MENU )
|
|
{
|
|
*min = 0.0;
|
|
*max = (double) property.menu.menu_item_count;
|
|
|
|
return 1;
|
|
}
|
|
if( property.type == UNICAP_PROPERTY_TYPE_RANGE )
|
|
{
|
|
*min = property.range.min;
|
|
*max = property.range.max;
|
|
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
char **vj_unicap_get_list( void *ud )
|
|
{
|
|
unicap_property_t property;
|
|
unicap_property_t property_spec;
|
|
int i;
|
|
unicap_void_property( &property_spec );
|
|
vj_unicap_t *vut = (vj_unicap_t*) ud;
|
|
|
|
for( i = 0; SUCCESS( unicap_enumerate_properties( vut->handle,
|
|
&property_spec, &property, i ) ); i ++ )
|
|
{
|
|
}
|
|
|
|
int n = i;
|
|
|
|
char **res = (char**) vj_malloc(sizeof(char*) * (n+1) );
|
|
memset(res, 0,sizeof(char*) * (n+1));
|
|
|
|
for( i = 0;i < n; i ++ )
|
|
{
|
|
if( SUCCESS( unicap_enumerate_properties(vut->handle,
|
|
&property_spec,&property,i ) ) )
|
|
{
|
|
res[i] = strdup( property.identifier );
|
|
}
|
|
}
|
|
|
|
|
|
return res;
|
|
}
|
|
|
|
|
|
int vj_unicap_get_value( void *ud, char *key, int atom_type, void *value )
|
|
{
|
|
unicap_property_t property;
|
|
unicap_property_t property_spec;
|
|
int i;
|
|
unicap_void_property( &property_spec );
|
|
vj_unicap_t *vut = (vj_unicap_t*) ud;
|
|
|
|
for( i = 0; SUCCESS( unicap_enumerate_properties( vut->handle,
|
|
&property_spec, &property, i ) ); i ++ )
|
|
{
|
|
unicap_get_property( vut->handle, &property);
|
|
|
|
if( strcmp( property.identifier, key ) != 0 )
|
|
continue;
|
|
|
|
if( property.type == UNICAP_PROPERTY_TYPE_MENU )
|
|
{
|
|
#ifdef STRICT_CHECKING
|
|
assert( atom_type == VEVO_ATOM_TYPE_DOUBLE );
|
|
#endif
|
|
int n = property.menu.menu_item_count;
|
|
int j;
|
|
for( j =0; j < n; j ++ )
|
|
{
|
|
if( strcmp( property.menu_item, property.menu.menu_items[j] ) == 0 )
|
|
{
|
|
double *dval = value;
|
|
*dval = (double) j;
|
|
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
if( property.type == UNICAP_PROPERTY_TYPE_RANGE )
|
|
{
|
|
#ifdef STRICT_CHECKING
|
|
assert( atom_type == VEVO_ATOM_TYPE_DOUBLE );
|
|
#endif
|
|
double *dval = value;
|
|
*dval = property.value;
|
|
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int vj_unicap_num_capture_devices( void *dud )
|
|
{
|
|
unicap_driver_t *ud = (unicap_driver_t*) dud;
|
|
return ud->num_devices;
|
|
}
|
|
|
|
void *vj_unicap_new_device( void *dud, int device_id )
|
|
{
|
|
unicap_driver_t *ud = (unicap_driver_t*) dud;
|
|
|
|
if( ud->num_devices <= 0 )
|
|
{
|
|
veejay_msg(0, "I didn't find any capture devices");
|
|
return NULL;
|
|
}
|
|
|
|
if( device_id < 0 || device_id >= ud->num_devices )
|
|
{
|
|
veejay_msg(0, "I only found %d devices", ud->num_devices );
|
|
return NULL;
|
|
}
|
|
|
|
vj_unicap_t *vut = (vj_unicap_t*) vj_calloc(sizeof(vj_unicap_t));
|
|
|
|
if( !SUCCESS( unicap_enumerate_devices( NULL, &(vut->device), device_id ) ) )
|
|
{
|
|
veejay_msg(0, "Failed to get info for device '%s'\n", vut->device.identifier );
|
|
free(vut);
|
|
return NULL;
|
|
}
|
|
|
|
if( !SUCCESS( unicap_open( &(vut->handle), &(vut->device) ) ) )
|
|
{
|
|
veejay_msg(0, "Failed to open capture device '%s'\n", vut->device.identifier );
|
|
}
|
|
|
|
veejay_msg(2, "Using device '%s'", vut->device.identifier);
|
|
|
|
return (void*) vut;
|
|
}
|
|
static unsigned int
|
|
get_fourcc(char * fourcc)
|
|
{
|
|
return ((((unsigned int)(fourcc[0])<<0)|
|
|
((unsigned int)(fourcc[1])<<8)|
|
|
((unsigned int)(fourcc[2])<<16)|
|
|
((unsigned int)(fourcc[3])<<24)));
|
|
}
|
|
int vj_unicap_configure_device( void *ud, int pixel_format, int w, int h )
|
|
{
|
|
vj_unicap_t *vut = (vj_unicap_t*) ud;
|
|
|
|
unicap_void_format( &(vut->format_spec));
|
|
|
|
unsigned int fourcc = 0;
|
|
vut->sizes[0] = w * h;
|
|
|
|
switch(pixel_format)
|
|
{
|
|
case FMT_420:
|
|
case FMT_420F:
|
|
fourcc = get_fourcc( "YU12" );
|
|
vut->sizes[1] = (w*h)/4;
|
|
vut->sizes[2] = vut->sizes[1];
|
|
vut->pixfmt = ( pixel_format == FMT_420 ? PIX_FMT_YUV420P : PIX_FMT_YUVJ420P );
|
|
vut->shift = 1;
|
|
break;
|
|
case FMT_422:
|
|
case FMT_422F:
|
|
fourcc = get_fourcc( "422P" );
|
|
vut->sizes[1] = ((w/2)*h);
|
|
vut->sizes[2] = vut->sizes[1];
|
|
vut->pixfmt = ( pixel_format == FMT_422 ? PIX_FMT_YUV422P : PIX_FMT_YUVJ422P );
|
|
vut->shift = 1;
|
|
break;
|
|
case FMT_444:
|
|
case FMT_444F:
|
|
fourcc = get_fourcc( "422P" );
|
|
vut->sampler = subsample_init( w );
|
|
vut->sizes[1] = (w*h);
|
|
vut->sizes[2] = vut->sizes[1];
|
|
vut->sampler = subsample_init( w );
|
|
vut->pixfmt = ( pixel_format == FMT_444 ? PIX_FMT_YUV444P : PIX_FMT_YUVJ444P );
|
|
vut->shift = 0;
|
|
break;
|
|
#ifdef STRICT_CHECKING
|
|
default:
|
|
assert(0);
|
|
break;
|
|
#endif
|
|
}
|
|
|
|
int i;
|
|
int found_native = 0;
|
|
for( i = 0; SUCCESS( unicap_enumerate_formats( vut->handle, &(vut->format_spec), &(vut->format), i ) ); i ++ )
|
|
{
|
|
if( fourcc == vut->format.fourcc )
|
|
{
|
|
found_native = 1;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if( found_native )
|
|
{
|
|
vut->format.size.width = w;
|
|
vut->format.size.height = h;
|
|
|
|
veejay_msg(2, "Capture device supports '%s'", vut->format.identifier );
|
|
if (!SUCCESS(unicap_set_format( vut->handle, &(vut->format) )))
|
|
{
|
|
veejay_msg(0, "Unable to set video size %d x %d in format %s",
|
|
w,h,vut->format.identifier );
|
|
|
|
return 0;
|
|
}
|
|
// vut->deinterlace = 1;
|
|
}
|
|
else
|
|
{
|
|
unsigned int rgb24_fourcc = get_fourcc( "RGB3" );
|
|
unsigned int rgb_fourcc = get_fourcc( "RGB4" );
|
|
unicap_format_t rgb_spec, rgb_format;
|
|
unicap_void_format( &rgb_spec);
|
|
veejay_msg(1, "Unable to select native pixel format, trying RGB formats");
|
|
|
|
for( i = 0;
|
|
SUCCESS( unicap_enumerate_formats( vut->handle, &rgb_spec, &rgb_format, i ) ); i ++ )
|
|
{
|
|
if( rgb_fourcc == rgb_format.fourcc )
|
|
{
|
|
veejay_msg(0, "Camera can capture in %s", rgb_format.identifier);
|
|
vut->rgb = 1;
|
|
rgb_format.size.width = w;
|
|
rgb_format.size.height = h;
|
|
break;
|
|
} else if ( rgb24_fourcc == rgb_format.fourcc )
|
|
{
|
|
veejay_msg(0, "Camera can capture in %s", rgb_format.identifier);
|
|
vut->rgb = 2;
|
|
rgb_format.size.width = w;
|
|
rgb_format.size.height = h;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if(!vut->rgb)
|
|
{
|
|
veejay_msg(0, "No matching formats found. Camera not supported.");
|
|
|
|
return 0;
|
|
}
|
|
else
|
|
{
|
|
veejay_memcpy( &(vut->format), &rgb_format, sizeof( rgb_format ));
|
|
}
|
|
}
|
|
|
|
unicap_format_t test;
|
|
memset(&test, 0,sizeof(unicap_format_t));
|
|
if(! SUCCESS( unicap_get_format( vut->handle, &test ) ) )
|
|
{
|
|
veejay_msg(0, "Failed to get video format");
|
|
}
|
|
|
|
veejay_msg(0, "Capture video from '%s' in %d x %d pixels, %d bpp using %s",
|
|
vut->device.identifier,
|
|
test.size.width,
|
|
test.size.height,
|
|
test.bpp,
|
|
test.identifier );
|
|
|
|
if ( test.size.width != w || test.size.height != h )
|
|
{
|
|
veejay_msg(0, "Video size mismatch, retrying...");
|
|
vut->format.size.width = w;
|
|
vut->format.size.height = h;
|
|
if( !SUCCESS( unicap_set_format( vut->handle, &(vut->format) ) ) )
|
|
{
|
|
veejay_msg(0, "Cannot set size %d x %d or format %s", w,h,vut->format.identifier);
|
|
|
|
return 0;
|
|
}
|
|
veejay_msg(2, "Capture size set to %d x %d (%s)", w,h,vut->format.identifier);
|
|
|
|
}
|
|
|
|
veejay_memset( &(vut->buffer), 0, sizeof(unicap_data_buffer_t));
|
|
vut->buffer.data = vj_calloc( vut->format.buffer_size );
|
|
vut->buffer.buffer_size = vut->format.buffer_size;
|
|
|
|
vut->width = w;
|
|
vut->height =h ;
|
|
|
|
return 1;
|
|
}
|
|
int vj_unicap_start_capture( void *vut )
|
|
{
|
|
vj_unicap_t *v = (vj_unicap_t*) vut;
|
|
#ifdef STRICT_CHECKING
|
|
assert( v->state == 0 );
|
|
assert( v->priv_buf == NULL );
|
|
#endif
|
|
v->state = 1;
|
|
|
|
pthread_mutex_init( &(v->mutex), NULL );
|
|
|
|
int err = pthread_create( &(v->thread), NULL,
|
|
unicap_reader_thread, vut );
|
|
if( err == 0 )
|
|
{
|
|
v->active = 1;
|
|
return 1;
|
|
}
|
|
|
|
v->state = 0;
|
|
veejay_msg(VEEJAY_MSG_ERROR,
|
|
"Unable to start capture thread");
|
|
return 0;
|
|
}
|
|
|
|
int vj_unicap_stop_capture( void *vut )
|
|
{
|
|
vj_unicap_t *v = (vj_unicap_t*) vut;
|
|
|
|
lock_(vut);
|
|
v->state = 0;
|
|
unlock_(vut);
|
|
|
|
pthread_mutex_destroy( &(v->mutex) );
|
|
return 1;
|
|
}
|
|
|
|
static int vj_unicap_start_capture_( void *vut )
|
|
{
|
|
vj_unicap_t *v = (vj_unicap_t*) vut;
|
|
#ifdef STRICT_CHECKING
|
|
assert( v->priv_buf == NULL );
|
|
assert( v->state == 1 );
|
|
#endif
|
|
v->priv_buf = (uint8_t*) vj_calloc( BUFFERS * v->width * v->height * 4 );
|
|
#ifdef STRICT_CHECKING
|
|
assert( v->priv_buf != NULL );
|
|
#endif
|
|
|
|
if(!v->rgb)
|
|
{
|
|
veejay_memset( v->priv_buf + v->sizes[0], 128, v->sizes[1] );
|
|
veejay_memset( v->priv_buf + v->sizes[0] + v->sizes[1] , 128, v->sizes[2] );
|
|
}
|
|
|
|
if( !SUCCESS( unicap_start_capture( v->handle ) ) )
|
|
{
|
|
veejay_msg( 0, "Failed to start capture on device: %s\n", v->device.identifier );
|
|
free(v->priv_buf);
|
|
v->priv_buf = NULL;
|
|
return 0;
|
|
}
|
|
|
|
veejay_msg(VEEJAY_MSG_ERROR, "Started capture on device %s",
|
|
v->device.identifier );
|
|
return 1;
|
|
}
|
|
|
|
|
|
int vj_unicap_grab_a_frame( void *vut )
|
|
{
|
|
vj_unicap_t *v = (vj_unicap_t*) vut;
|
|
// unicap_lock_properties( v->handle );
|
|
unicap_data_buffer_t *ready_buffer = NULL;
|
|
if(!v->active)
|
|
{
|
|
veejay_msg(VEEJAY_MSG_ERROR, "Capture not started!");
|
|
return 0;
|
|
}
|
|
uint8_t *buffer[3] = {
|
|
v->priv_buf,
|
|
v->priv_buf + v->sizes[0],
|
|
v->priv_buf + v->sizes[1] + v->sizes[0]
|
|
};
|
|
|
|
if( ! SUCCESS( unicap_queue_buffer( v->handle, &(v->buffer) )) )
|
|
{
|
|
veejay_msg(VEEJAY_MSG_ERROR, "%s:%d Failed to queue buffer ",__FUNCTION__,__LINE__);
|
|
return 0;
|
|
}
|
|
|
|
if(! SUCCESS(unicap_wait_buffer(v->handle, &(v->buf)) ))
|
|
{
|
|
veejay_msg(VEEJAY_MSG_ERROR, "%s:%d Failed to wait for buffer on device %s",
|
|
__FUNCTION__,__LINE__, v->device.identifier );
|
|
}
|
|
|
|
if( v->buf->buffer_size <= 0 )
|
|
{
|
|
veejay_msg(0, "Unicap returned a buffer of size 0!");
|
|
return 0;
|
|
}
|
|
|
|
if( !v->buf->data )
|
|
{
|
|
veejay_msg(0, "Unicap returned a NULL buffer!");
|
|
return 0;
|
|
}
|
|
|
|
lock_(vut);
|
|
|
|
if( v->deinterlace )
|
|
{
|
|
yuv_deinterlace(
|
|
buffer,
|
|
v->width,
|
|
v->height,
|
|
v->pixfmt,
|
|
v->shift,
|
|
v->buf->data,
|
|
v->buf->data + v->sizes[0],
|
|
v->buf->data +v->sizes[0] + v->sizes[1]
|
|
);
|
|
}
|
|
else
|
|
{
|
|
if(!v->rgb)
|
|
{
|
|
veejay_memcpy( buffer[0], v->buf->data, v->sizes[0] );
|
|
veejay_memcpy( buffer[1], v->buf->data + v->sizes[0], v->sizes[1] );
|
|
veejay_memcpy( buffer[2], v->buf->data + v->sizes[0] +v->sizes[1] , v->sizes[2]);
|
|
}
|
|
else
|
|
{
|
|
VJFrame *srci = yuv_rgb_template( v->buf->data, v->width,v->height, (v->rgb==2 ? PIX_FMT_RGB24:PIX_FMT_RGB32) );
|
|
VJFrame *dsti = yuv_yuv_template( buffer[0],buffer[1],buffer[2], v->width,v->height, v->pixfmt );
|
|
|
|
yuv_convert_any(srci,dsti, srci->format, dsti->format );
|
|
|
|
free(srci);
|
|
free(dsti);
|
|
|
|
|
|
}
|
|
}
|
|
|
|
unlock_(vut);
|
|
|
|
return 1;
|
|
}
|
|
|
|
|
|
int vj_unicap_grab_frame( void *vut, uint8_t *buffer[3], const int width, const int height )
|
|
{
|
|
vj_unicap_t *v = (vj_unicap_t*) vut;
|
|
|
|
#ifdef STRICT_CHECKING
|
|
assert(v->active == 1 );
|
|
assert(v->state != 0 );
|
|
assert(v->sizes[0] > 0 );
|
|
assert(v->priv_buf != NULL );
|
|
#endif
|
|
|
|
lock_(vut);
|
|
|
|
uint8_t *src[3] = {
|
|
v->priv_buf,
|
|
v->priv_buf + v->sizes[0],
|
|
v->priv_buf + v->sizes[0] + v->sizes[1]
|
|
};
|
|
|
|
veejay_memcpy( buffer[0], src[0], v->sizes[0] );
|
|
veejay_memcpy( buffer[1], src[1], v->sizes[1] );
|
|
veejay_memcpy( buffer[2], src[2], v->sizes[2]);
|
|
|
|
unlock_(vut);
|
|
|
|
return 1;
|
|
}
|
|
|
|
|
|
static int vj_unicap_stop_capture_( void *vut )
|
|
{
|
|
vj_unicap_t *v = (vj_unicap_t*) vut;
|
|
if( !SUCCESS( unicap_stop_capture( v->handle ) ) )
|
|
{
|
|
veejay_msg(0,"Failed to stop capture on device: %s\n", v->device.identifier );
|
|
return 0;
|
|
}
|
|
v->active = 0;
|
|
veejay_msg(VEEJAY_MSG_ERROR, "Stopped capture on device %s",
|
|
v->device.identifier );
|
|
|
|
|
|
return 1;
|
|
}
|
|
|
|
|
|
int vj_unicap_status(void *vut)
|
|
{
|
|
if(!vut) return 0;
|
|
vj_unicap_t *v = (vj_unicap_t*) vut;
|
|
|
|
return v->active;
|
|
}
|
|
|
|
|
|
|
|
static void *unicap_reader_thread(void *data)
|
|
{
|
|
vj_unicap_t *v = (vj_unicap_t*) data;
|
|
|
|
if(! vj_unicap_start_capture_( data ) )
|
|
{
|
|
veejay_msg(VEEJAY_MSG_ERROR, "Unable to start capture thread.");
|
|
return NULL;
|
|
}
|
|
|
|
|
|
for( ;; )
|
|
{
|
|
if( v->state == 0 )
|
|
{
|
|
veejay_msg(VEEJAY_MSG_INFO, "Stopping capture thread");
|
|
break;
|
|
}
|
|
|
|
if(vj_unicap_grab_a_frame( data )==0)
|
|
{
|
|
veejay_msg(VEEJAY_MSG_ERROR, "Unable to grab a frame from the capture device. ");
|
|
v->state = 0;
|
|
}
|
|
}
|
|
|
|
vj_unicap_stop_capture_( data );
|
|
|
|
free(v->priv_buf);
|
|
v->active = 0;
|
|
v->priv_buf = NULL;
|
|
|
|
|
|
veejay_msg(VEEJAY_MSG_INFO, "Capture thread ended. (Stopped capturing)");
|
|
|
|
return NULL;
|
|
}
|
|
|
|
|
|
void vj_unicap_free_device( void *vut )
|
|
{
|
|
vj_unicap_t *v = (vj_unicap_t*) vut;
|
|
|
|
if( v->active || v->state )
|
|
vj_unicap_stop_capture( vut );
|
|
|
|
|
|
if( v->handle )
|
|
{
|
|
if( !SUCCESS( unicap_close( v->handle ) ) )
|
|
{
|
|
veejay_msg(0, "Failed to close the device: %s\n", v->device.identifier );
|
|
}
|
|
}
|
|
|
|
if(v->buffer.data)
|
|
free(v->buffer.data);
|
|
|
|
|
|
free( v );
|
|
v = NULL;
|
|
}
|
|
|