Fixes to xine engine

This commit is contained in:
Jonas Kvinge 2018-06-28 23:12:39 +02:00
parent 505c1feb42
commit fc66e2e2c7
7 changed files with 108 additions and 116 deletions

View File

@ -42,7 +42,7 @@ Engine::Base::Base()
end_nanosec_(0), end_nanosec_(0),
scope_(kScopeSize), scope_(kScopeSize),
output_(""), output_(""),
device_(QVariant("")), device_(QVariant()),
rg_enabled_(false), rg_enabled_(false),
rg_mode_(0), rg_mode_(0),
rg_preamp_(0), rg_preamp_(0),

View File

@ -63,7 +63,7 @@ GstEnginePipeline::GstEnginePipeline(GstEngine *engine)
id_(sId++), id_(sId++),
valid_(false), valid_(false),
output_(""), output_(""),
device_(""), device_(QVariant()),
eq_enabled_(false), eq_enabled_(false),
eq_preamp_(0), eq_preamp_(0),
stereo_balance_(0.0f), stereo_balance_(0.0f),

View File

@ -357,6 +357,7 @@ EngineBase::PluginDetailsList VLCEngine::GetPluginList() const {
details.name = QString::fromUtf8(audio_output->psz_name); details.name = QString::fromUtf8(audio_output->psz_name);
details.description = QString::fromUtf8(audio_output->psz_description); details.description = QString::fromUtf8(audio_output->psz_description);
ret << details; ret << details;
//GetDevicesList(audio_output->psz_name);
} }
libvlc_audio_output_list_release(audio_output_list); libvlc_audio_output_list_release(audio_output_list);

View File

@ -201,7 +201,8 @@ bool XineEngine::Load(const QUrl &url, Engine::TrackChangeFlags change, bool for
xine_close(stream_); xine_close(stream_);
int result = xine_open(stream_, url.path().toUtf8()); //int result = xine_open(stream_, url.path().toUtf8());
int result = xine_open(stream_, url.toString().toUtf8());
if (result) { if (result) {
#ifndef XINE_SAFE_MODE #ifndef XINE_SAFE_MODE
@ -370,7 +371,7 @@ EngineBase::OutputDetailsList XineEngine::GetOutputsList() const {
} }
bool XineEngine::CustomDeviceSupport(const QString &name) { bool XineEngine::CustomDeviceSupport(const QString &name) {
return (name == DefaultOutput() ? false : true); return (name == "alsa" || name == "oss" || name == "jack" || name == "pulseaudio");
} }
void XineEngine::ReloadSettings() { void XineEngine::ReloadSettings() {

View File

@ -2,17 +2,14 @@
Copyright: See COPYING file that comes with this distribution Copyright: See COPYING file that comes with this distribution
This has to be a c file or for some reason it won't link! (GCC 3.4.1) This has to be a c file or for some reason it won't link! (GCC 3.4.1)
*/ */
/* gcc doesn't like inline for me */
#define inline
/* need access to port_ticket */ /* need access to port_ticket */
#define XINE_ENGINE_INTERNAL #define XINE_ENGINE_INTERNAL
#include "config.h" #include "config.h"
#include <time.h>
#include "xinescope.h" #include "xinescope.h"
#include <xine/post.h> #include <xine/post.h>
#include <xine/xine_internal.h> #include <xine/xine_internal.h>
@ -73,10 +70,10 @@ static void scope_port_put_buffer(xine_audio_port_t *port_gen, audio_buffer_t *b
/* I keep my own metronom because xine wouldn't for some reason */ /* I keep my own metronom because xine wouldn't for some reason */
memcpy(&this->metronom, stream->metronom, sizeof(metronom_t)); memcpy(&this->metronom, stream->metronom, sizeof(metronom_t));
new_node = malloc(sizeof(MyNode)); new_node = (MyNode *) malloc(sizeof(MyNode));
new_node->vpts = myMetronom->got_audio_samples(myMetronom, buf->vpts, buf->num_frames); new_node->vpts = myMetronom->got_audio_samples(myMetronom, buf->vpts, buf->num_frames);
new_node->num_frames = buf->num_frames; new_node->num_frames = buf->num_frames;
new_node->mem = malloc(num_samples * 2); new_node->mem = (int16_t *) malloc(num_samples * 2);
memcpy(new_node->mem, buf->mem, num_samples * 2); memcpy(new_node->mem, buf->mem, num_samples * 2);
{ {
@ -91,8 +88,8 @@ static void scope_port_put_buffer(xine_audio_port_t *port_gen, audio_buffer_t *b
port->original_port->put_buffer(port->original_port, buf, stream); port->original_port->put_buffer(port->original_port, buf, stream);
/* finally we should append the current buffer to the list /* Finally we should append the current buffer to the list
* this is thread-safe due to the way we handle the list in the GUI thread */ * This is thread-safe due to the way we handle the list in the GUI thread */
new_node->next = this->list->next; new_node->next = this->list->next;
this->list->next = new_node; this->list->next = new_node;
@ -100,8 +97,9 @@ static void scope_port_put_buffer(xine_audio_port_t *port_gen, audio_buffer_t *b
#undef this #undef this
} }
static void scope_dispose(post_plugin_t *this) { static void scope_dispose(post_plugin_t *post) {
MyNode *list = ((scope_plugin_t*)this)->list;
MyNode *list = ((scope_plugin_t*)post)->list;
MyNode *prev; MyNode *prev;
MyNode *node = list; MyNode *node = list;
@ -117,7 +115,7 @@ static void scope_dispose(post_plugin_t *this) {
while(node != list); while(node != list);
free(this); free(post);
} }
@ -127,7 +125,7 @@ static void scope_dispose(post_plugin_t *this) {
xine_post_t *scope_plugin_new(xine_t *xine, xine_audio_port_t *audio_target) { xine_post_t *scope_plugin_new(xine_t *xine, xine_audio_port_t *audio_target) {
scope_plugin_t *scope_plugin = calloc(1, sizeof(scope_plugin_t)); scope_plugin_t *scope_plugin = (scope_plugin_t *) calloc(1, sizeof(scope_plugin_t));
post_plugin_t *post_plugin = (post_plugin_t *)scope_plugin; post_plugin_t *post_plugin = (post_plugin_t *)scope_plugin;
{ {
@ -154,7 +152,7 @@ xine_post_t* scope_plugin_new(xine_t *xine, xine_audio_port_t *audio_target) {
post_plugin->xine = xine; post_plugin->xine = xine;
/* scope_plugin_t init */ /* scope_plugin_t init */
scope_plugin->list = calloc(1, sizeof(MyNode)); scope_plugin->list = (MyNode *) calloc(1, sizeof(MyNode));
scope_plugin->list->next = scope_plugin->list; scope_plugin->list->next = scope_plugin->list;
return &post_plugin->xine_post; return &post_plugin->xine_post;

View File

@ -17,8 +17,7 @@
typedef struct my_node_s MyNode; typedef struct my_node_s MyNode;
struct my_node_s struct my_node_s {
{
MyNode *next; MyNode *next;
int16_t *mem; int16_t *mem;
int num_frames; int num_frames;
@ -30,21 +29,13 @@ struct my_node_s
extern "C" extern "C"
{ {
#endif #endif
xine_post_t* xine_post_t *scope_plugin_new( xine_t*, xine_audio_port_t* );
scope_plugin_new( xine_t*, xine_audio_port_t* );
/* we sacrifice type-safety here because some GCCs appear broken /* we sacrifice type-safety here because some GCCs appear broken and choke on redefining the xine_post_t typedef */
* and choke on redefining the xine_post_t typedef
*/
MyNode* MyNode *scope_plugin_list(void*);
scope_plugin_list( void* ); int scope_plugin_channels(void*);
metronom_t *scope_plugin_metronom(void*);
int
scope_plugin_channels( void* );
metronom_t*
scope_plugin_metronom( void* );
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif

View File

@ -233,9 +233,10 @@ void BackendSettingsPage::Load_Device(QString output, QVariant device) {
ui_->combobox_device->setEnabled(false); ui_->combobox_device->setEnabled(false);
ui_->lineedit_device->setText(""); ui_->lineedit_device->setText("");
#ifndef Q_OS_WIN32 #ifdef Q_OS_WIN
ui_->combobox_device->addItem(IconLoader::Load("soundcard"), "Automatically select", QVariant("")); if (engine()->type() != Engine::GStreamer)
#endif #endif
ui_->combobox_device->addItem(IconLoader::Load("soundcard"), "Automatically select", QVariant(""));
for (DeviceFinder *f : dialog()->app()->enginedevice()->device_finders_) { for (DeviceFinder *f : dialog()->app()->enginedevice()->device_finders_) {
if (!f->outputs().contains(output)) continue; if (!f->outputs().contains(output)) continue;