Rename pulsevideo to pinos

This commit is contained in:
Wim Taymans 2015-06-30 18:06:36 +02:00
parent b68b62740c
commit 4b72848a1a
47 changed files with 356 additions and 369 deletions

View file

@ -1,4 +1,4 @@
/* Pulsevideo
/* Pinos
* Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
*
* This library is free software; you can redistribute it and/or

View file

@ -1,4 +1,4 @@
/* Pulsevideo
/* Pinos
* Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
*
* This library is free software; you can redistribute it and/or
@ -43,7 +43,7 @@ typedef struct _PvClientSourcePrivate PvClientSourcePrivate;
/**
* PvClientSource:
*
* Pulsevideo client source object class.
* Pinos client source object class.
*/
struct _PvClientSource {
PvSource object;
@ -54,7 +54,7 @@ struct _PvClientSource {
/**
* PvClientSourceClass:
*
* Pulsevideo client source object class.
* Pinos client source object class.
*/
struct _PvClientSourceClass {
PvSourceClass parent_class;

View file

@ -1,4 +1,4 @@
/* Pulsevideo
/* Pinos
* Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
*
* This library is free software; you can redistribute it and/or
@ -18,14 +18,14 @@
*/
#include <string.h>
#include "client/pulsevideo.h"
#include "client/pinos.h"
#include "client/pv-enumtypes.h"
#include "server/pv-client.h"
#include "server/pv-client-source.h"
#include "dbus/org-pulsevideo.h"
#include "dbus/org-pinos.h"
struct _PvClientPrivate
{
@ -193,7 +193,7 @@ handle_create_source_output (PvClient1 *interface,
not_allowed:
{
g_dbus_method_invocation_return_dbus_error (invocation,
"org.pulsevideo.Error", "not client owner");
"org.pinos.Error", "not client owner");
return TRUE;
}
no_source:
@ -270,13 +270,13 @@ handle_create_source_input (PvClient1 *interface,
not_allowed:
{
g_dbus_method_invocation_return_dbus_error (invocation,
"org.pulsevideo.Error", "not client owner");
"org.pinos.Error", "not client owner");
return TRUE;
}
no_source:
{
g_dbus_method_invocation_return_dbus_error (invocation,
"org.pulsevideo.Error", "Can't create source");
"org.pinos.Error", "Can't create source");
return TRUE;
}
no_input:

View file

@ -1,4 +1,4 @@
/* Pulsevideo
/* Pinos
* Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
*
* This library is free software; you can redistribute it and/or
@ -42,7 +42,7 @@ typedef struct _PvClientPrivate PvClientPrivate;
/**
* PvClient:
*
* Pulsevideo client object class.
* Pinos client object class.
*/
struct _PvClient {
GObject object;
@ -53,7 +53,7 @@ struct _PvClient {
/**
* PvClientClass:
*
* Pulsevideo client object class.
* Pinos client object class.
*/
struct _PvClientClass {
GObjectClass parent_class;

View file

@ -1,4 +1,4 @@
/* Pulsevideo
/* Pinos
* Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
*
* This library is free software; you can redistribute it and/or
@ -21,12 +21,12 @@
#include "config.h"
#include "client/pulsevideo.h"
#include "client/pinos.h"
#include "server/pv-daemon.h"
#include "server/pv-client.h"
#include "dbus/org-pulsevideo.h"
#include "dbus/org-pinos.h"
#define PV_DAEMON_GET_PRIVATE(obj) \
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), PV_TYPE_DAEMON, PvDaemonPrivate))

View file

@ -1,4 +1,4 @@
/* Pulsevideo
/* Pinos
* Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
*
* This library is free software; you can redistribute it and/or
@ -43,7 +43,7 @@ typedef struct _PvDaemonPrivate PvDaemonPrivate;
/**
* PvDaemon:
*
* Pulsevideo daemon object class.
* Pinos daemon object class.
*/
struct _PvDaemon {
GObject object;
@ -54,7 +54,7 @@ struct _PvDaemon {
/**
* PvDaemonClass:
*
* Pulsevideo daemon object class.
* Pinos daemon object class.
*/
struct _PvDaemonClass {
GObjectClass parent_class;

View file

@ -1,4 +1,4 @@
/* Pulsevideo
/* Pinos
* Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
*
* This library is free software; you can redistribute it and/or
@ -27,7 +27,7 @@
#include "server/pv-daemon.h"
#include "server/pv-source-output.h"
#include "dbus/org-pulsevideo.h"
#include "dbus/org-pinos.h"
struct _PvSourceOutputPrivate
{
@ -202,7 +202,7 @@ handle_start (PvSourceOutput1 *interface,
no_format:
{
g_dbus_method_invocation_return_dbus_error (invocation,
"org.pulsevideo.Error", "No format");
"org.pinos.Error", "No format");
close (fd[0]);
close (fd[1]);
g_clear_pointer (&priv->requested_format, g_bytes_unref);

View file

@ -1,4 +1,4 @@
/* Pulsevideo
/* Pinos
* Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
*
* This library is free software; you can redistribute it and/or
@ -40,7 +40,7 @@ typedef struct _PvSourceOutputPrivate PvSourceOutputPrivate;
/**
* PvSourceOutput:
*
* Pulsevideo source output object class.
* Pinos source output object class.
*/
struct _PvSourceOutput {
GObject object;
@ -51,7 +51,7 @@ struct _PvSourceOutput {
/**
* PvSourceOutputClass:
*
* Pulsevideo source output object class.
* Pinos source output object class.
*/
struct _PvSourceOutputClass {
GObjectClass parent_class;

View file

@ -1,4 +1,4 @@
/* Pulsevideo
/* Pinos
* Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
*
* This library is free software; you can redistribute it and/or
@ -19,13 +19,13 @@
#include <gio/gio.h>
#include "client/pulsevideo.h"
#include "client/pinos.h"
#include "client/pv-enumtypes.h"
#include "server/pv-source.h"
#include "server/pv-daemon.h"
#include "dbus/org-pulsevideo.h"
#include "dbus/org-pinos.h"
#define PV_SOURCE_GET_PRIVATE(obj) \

View file

@ -1,4 +1,4 @@
/* Pulsevideo
/* Pinos
* Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
*
* This library is free software; you can redistribute it and/or
@ -44,7 +44,7 @@ typedef struct _PvSourcePrivate PvSourcePrivate;
/**
* PvSource:
*
* Pulsevideo source object class.
* Pinos source object class.
*/
struct _PvSource {
GObject object;
@ -59,7 +59,7 @@ struct _PvSource {
* @create_source_output: called to create a new source-output object
* @release_source_output: called to release a source-output object
*
* Pulsevideo source object class.
* Pinos source object class.
*/
struct _PvSourceClass {
GObjectClass parent_class;