1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 16:47:46 +02:00
toxic/src/video_device.c

136 lines
3.7 KiB
C
Raw Normal View History

2015-07-11 03:54:06 +02:00
/* video_device.c
*
*
* Copyright (C) 2014 Toxic All Rights Reserved.
*
* This file is part of Toxic.
*
* Toxic 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 3 of the License, or
* (at your option) any later version.
*
* Toxic 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 Toxic. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "video_device.h"
#ifdef VIDEO
#include "video_call.h"
#endif /* VIDEO */
#ifdef __linux__
#include "linux/videodev2.h"
#endif /* __linux__ */
2015-07-11 03:54:06 +02:00
#include "line_info.h"
#include "settings.h"
#include <stdbool.h>
#include <string.h>
#include <pthread.h>
#include <unistd.h>
#include <stdlib.h>
#include <assert.h>
#define inline__ inline __attribute__((always_inline))
extern struct user_settings *user_settings;
typedef struct VideoDevice {
//ALCdevice *dhndl; /* Handle of device selected/opened */
//ALCcontext *ctx; /* Device context */
DataHandleCallback cb; /* Use this to handle data from input device usually */
void* cb_data; /* Data to be passed to callback */
int32_t friend_number; /* ToxAV friend number */
uint32_t source, buffers[OPENAL_BUFS]; /* Playback source/buffers */
uint32_t ref_count;
int32_t selection;
pthread_mutex_t mutex[1];
uint32_t sample_rate;
uint32_t frame_duration;
} VideoDevice;
const char *ddevice_names[2]; /* Default device */
const char *devices_names[2][MAX_DEVICES]; /* Container of available devices */
static int size[2]; /* Size of above containers */
Device *running[2][MAX_DEVICES] = {{NULL}}; /* Running devices */
uint32_t primary_device[2]; /* Primary device */
#ifdef VIDEO
static ToxAV* av = NULL;
#endif /* VIDEO */
/* q_mutex */
#define lock pthread_mutex_lock(&mutex);
#define unlock pthread_mutex_unlock(&mutex);
pthread_mutext_t mutex;
bool thread_running = true,
2015-07-11 11:06:12 +02:00
thread_paused = true; /* Thread control */
2015-07-11 03:54:06 +02:00
void* thread_poll(void*);
/* Meet devices */
#ifndef VIDEO
VideoDeviceError init_video_devices(ToxAV* av_)
#else
#endif /* VIDEO */
{
2015-07-11 11:06:12 +02:00
size[input] = 0;
#ifdef __linux__
for(int i = 0; <= MAX_DEVICES; ++i) {
int v4l_fd;
struct v4l2_capability cap;
char *dev_name;
v4l_fd = open(dev_name, O_RDWR | O_NONBLOCK, 0);
if (v4l_fd == -1)
break;
else {
device_names[input][i] = video_cap.card;
}
close(v4l_fd);
size[input] = i;
}
#endif /* __linux__ */
/* TODO: Add OSX implementation for listing input video devices */
size[output] = 0;
/* TODO: List output video devices */
// Start poll thread
if (pthread_mutex_init(&mutex, NULL) != 0)
return vde_InternalError;
pthread_t thread_id;
if ( pthread_create(&thread_id, NULL, thread_poll, NULL) != 0 || pthread_detatch(thread_id) != 0)
return vde_InternalError;
2015-07-11 03:54:06 +02:00
#ifdef VIDEO
2015-07-11 11:06:12 +02:00
av = av_;
2015-07-11 03:54:06 +02:00
#endif /* VIDEO */
2015-07-11 11:06:12 +02:00
return (VideoDeviceError) vde_None;
2015-07-11 03:54:06 +02:00
}
VideoDeviceError terminate_video_devices()
{
2015-07-11 11:06:12 +02:00
/* Cleanup if needed */
thread_running = false;
usleep(20000);
2015-07-11 03:54:06 +02:00
2015-07-11 11:06:12 +02:00
if (pthread_mutex_destroy(&mutex) != 0)
return (VideoDeviceError) vde_InternalError;
2015-07-11 03:54:06 +02:00
2015-07-11 11:06:12 +02:00
return (VideoDeviceError) vde_None;
2015-07-11 03:54:06 +02:00
}