diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-02-15 22:52:30 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-02-15 23:39:35 +0530 |
commit | a4323638b312dbe09ac42ad1cbcfbfbb1fe9a6a9 (patch) | |
tree | 02f6eb8860da65b329b4de779e3445cd6448b8ec | |
parent | 68fa80e83118a7a2be037eb235e5d211912dee0e (diff) |
closedcaption: Port plugin to MSVC
pthread is not portable, so we can't use a pthread mutex use GMutex
instead.
-rw-r--r-- | ext/closedcaption/decoder.c | 36 | ||||
-rw-r--r-- | ext/closedcaption/decoder.h | 4 |
2 files changed, 20 insertions, 20 deletions
diff --git a/ext/closedcaption/decoder.c b/ext/closedcaption/decoder.c index b74e72956..8fe25cfa3 100644 --- a/ext/closedcaption/decoder.c +++ b/ext/closedcaption/decoder.c @@ -31,7 +31,7 @@ # include "config.h" #endif -#include <pthread.h> +#include <glib.h> #include "misc.h" #include "decoder.h" @@ -517,13 +517,13 @@ vbi_raw_decode (vbi_raw_decoder * rd, uint8_t * raw, vbi_sliced * out) rd3 = (vbi3_raw_decoder *) rd->pattern; n_lines = rd->count[0] + rd->count[1]; - pthread_mutex_lock (&rd->mutex); + g_mutex_lock (&rd->mutex); { n_lines = vbi3_raw_decoder_decode (rd3, out, n_lines, raw); } - pthread_mutex_unlock (&rd->mutex); + g_mutex_unlock (&rd->mutex); return n_lines; } @@ -549,14 +549,14 @@ vbi_raw_decoder_resize (vbi_raw_decoder * rd, int *start, unsigned int *count) rd3 = (vbi3_raw_decoder *) rd->pattern; - pthread_mutex_lock (&rd->mutex); + g_mutex_lock (&rd->mutex); { if ((rd->start[0] == start[0]) && (rd->start[1] == start[1]) && (rd->count[0] == (int) count[0]) && (rd->count[1] == (int) count[1])) { - pthread_mutex_unlock (&rd->mutex); + g_mutex_unlock (&rd->mutex); return; } @@ -574,7 +574,7 @@ vbi_raw_decoder_resize (vbi_raw_decoder * rd, int *start, unsigned int *count) #endif } - pthread_mutex_unlock (&rd->mutex); + g_mutex_unlock (&rd->mutex); } /** @@ -600,13 +600,13 @@ vbi_raw_decoder_remove_services (vbi_raw_decoder * rd, unsigned int services) rd3 = (vbi3_raw_decoder *) rd->pattern; service_set = services; - pthread_mutex_lock (&rd->mutex); + g_mutex_lock (&rd->mutex); { service_set = vbi3_raw_decoder_remove_services (rd3, service_set); } - pthread_mutex_unlock (&rd->mutex); + g_mutex_unlock (&rd->mutex); return service_set; } @@ -632,14 +632,14 @@ vbi_raw_decoder_check_services (vbi_raw_decoder * rd, service_set = services; - pthread_mutex_lock (&rd->mutex); + g_mutex_lock (&rd->mutex); { service_set = vbi_sampling_par_check_services ((vbi_sampling_par *) rd, service_set, strict); } - pthread_mutex_unlock (&rd->mutex); + g_mutex_unlock (&rd->mutex); return (unsigned int) service_set; } @@ -679,7 +679,7 @@ vbi_raw_decoder_add_services (vbi_raw_decoder * rd, rd3 = (vbi3_raw_decoder *) rd->pattern; service_set = services; - pthread_mutex_lock (&rd->mutex); + g_mutex_lock (&rd->mutex); { vbi3_raw_decoder_set_sampling_par (rd3, (vbi_sampling_par *) rd, strict); @@ -687,7 +687,7 @@ vbi_raw_decoder_add_services (vbi_raw_decoder * rd, service_set = vbi3_raw_decoder_add_services (rd3, service_set, strict); } - pthread_mutex_unlock (&rd->mutex); + g_mutex_unlock (&rd->mutex); return service_set; } @@ -741,7 +741,7 @@ vbi_raw_decoder_parameters (vbi_raw_decoder * rd, service_set = services; - pthread_mutex_lock (&rd->mutex); + g_mutex_lock (&rd->mutex); { service_set = vbi_sampling_par_from_services @@ -749,7 +749,7 @@ vbi_raw_decoder_parameters (vbi_raw_decoder * rd, (unsigned int *) max_rate, videostd_set, service_set); } - pthread_mutex_unlock (&rd->mutex); + g_mutex_unlock (&rd->mutex); return (unsigned int) service_set; } @@ -774,13 +774,13 @@ vbi_raw_decoder_reset (vbi_raw_decoder * rd) rd3 = (vbi3_raw_decoder *) rd->pattern; - pthread_mutex_lock (&rd->mutex); + g_mutex_lock (&rd->mutex); { vbi3_raw_decoder_reset (rd3); } - pthread_mutex_unlock (&rd->mutex); + g_mutex_unlock (&rd->mutex); } /** @@ -800,7 +800,7 @@ vbi_raw_decoder_destroy (vbi_raw_decoder * rd) vbi3_raw_decoder_delete (rd3); - pthread_mutex_destroy (&rd->mutex); + g_mutex_clear (&rd->mutex); CLEAR (*rd); } @@ -819,7 +819,7 @@ vbi_raw_decoder_init (vbi_raw_decoder * rd) CLEAR (*rd); - pthread_mutex_init (&rd->mutex, NULL); + g_mutex_init (&rd->mutex); rd3 = vbi3_raw_decoder_new ( /* sampling_par */ NULL); assert (NULL != rd3); diff --git a/ext/closedcaption/decoder.h b/ext/closedcaption/decoder.h index f91e705a0..b86593dd4 100644 --- a/ext/closedcaption/decoder.h +++ b/ext/closedcaption/decoder.h @@ -33,7 +33,7 @@ /* Public */ -#include <pthread.h> +#include <glib.h> /* Bit slicer */ @@ -370,7 +370,7 @@ typedef struct vbi_raw_decoder { /*< private >*/ - pthread_mutex_t mutex; + GMutex mutex; unsigned int services; #if 0 /* DISABLED LEGACY DECODER */ |