1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
/*****************************************************************
* gmerlin-avdecoder - a general purpose multimedia decoding library
*
* Copyright (c) 2001 - 2024 Members of the Gmerlin project
* http://github.com/bplaum
*
* 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, see <http://www.gnu.org/licenses/>.
* *****************************************************************/
#include <avdec_private.h>
#include <pthread.h>
#include <semaphore.h>
#include <stdio.h>
#include "libw32dll/wine/ldt_keeper.h"
#include <win32codec.h>
/* Due to lots of crashes, the win32 codecs are now in a private thread */
#define STATE_NORMAL 0
#define STATE_QUIT 1
#define STATE_ERROR 2
static void * win32_thread(void * data)
{
bgav_win32_thread_t * t;
t = data;
t->ldt_fs = Setup_LDT_Keeper();
/* Initialize codec */
if(!t->init(t))
{
t->state = STATE_ERROR;
Restore_LDT_Keeper(t->ldt_fs);
sem_post(&t->output_ready);
return NULL;
}
/* Tell, that we have initialized */
sem_post(&t->output_ready);
Check_FS_Segment();
/* Go into the decode loop */
while(1)
{
/* Wait for input semaphore */
sem_wait(&t->input_ready);
if(t->state == STATE_NORMAL)
{
/* Decode */
if(!t->keyframe_seen)
{
if(t->keyframe)
t->keyframe_seen = 1;
else
{
sem_post(&t->output_ready);
if(t->video_frame)
gavl_video_frame_clear(t->video_frame, &t->s->data.video.format);
continue;
}
}
if(!t->decode(t))
t->state = STATE_ERROR;
sem_post(&t->output_ready);
}
else
break;
}
Restore_LDT_Keeper(t->ldt_fs);
return NULL;
}
int bgav_win32_codec_thread_init(bgav_win32_thread_t * t,bgav_stream_t*s)
{
t->s = s;
sem_init(&t->input_ready, 0, 0);
sem_init(&t->output_ready, 0, 0);
pthread_create(&t->thread, NULL, win32_thread, t);
/* Wait until we have the stream format */
sem_wait(&t->output_ready);
if(t->state != STATE_NORMAL)
return 0;
else
return 1;
}
static int decode_common(bgav_win32_thread_t * t,
uint8_t * data,
int data_len)
{
t->data = data;
t->data_len = data_len;
sem_post(&t->input_ready);
sem_wait(&t->output_ready);
if(t->state != STATE_NORMAL)
return 0;
else
return 1;
}
int bgav_win32_codec_thread_decode_audio(bgav_win32_thread_t * t,
gavl_audio_frame_t * f,
uint8_t * data,
int data_len)
{
t->audio_frame = f;
return decode_common(t, data, data_len);
}
int bgav_win32_codec_thread_decode_video(bgav_win32_thread_t * t,
gavl_video_frame_t * f,
uint8_t * data,
int data_len, int keyframe)
{
t->video_frame = f;
t->keyframe = keyframe;
return decode_common(t, data, data_len);
}
void bgav_win32_codec_thread_cleanup(bgav_win32_thread_t * t)
{
t->state = STATE_QUIT;
pthread_join(t->thread, NULL);
}
|