mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
dvb: drop trailing whitespace and c&p leftovers
This commit is contained in:
parent
572c9154db
commit
408b3a87fd
10 changed files with 22 additions and 22 deletions
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* cam.h -
|
||||
* cam.h
|
||||
* Copyright (C) 2007 Alessandro Decina
|
||||
*
|
||||
*
|
||||
* Authors:
|
||||
* Alessandro Decina <alessandro@nnva.org>
|
||||
*
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* camapplication.h - GStreamer CAM (EN50221) Application Layer
|
||||
* Copyright (C) 2007 Alessandro Decina
|
||||
*
|
||||
*
|
||||
* Authors:
|
||||
* Alessandro Decina <alessandro@nnva.org>
|
||||
*
|
||||
|
@ -78,7 +78,7 @@ void cam_al_calc_buffer_size (CamAL *al, guint body_length,
|
|||
void _cam_al_application_init (CamALApplication *application);
|
||||
void _cam_al_application_destroy (CamALApplication *application);
|
||||
|
||||
CamReturn cam_al_application_write (CamALApplication *application,
|
||||
CamReturn cam_al_application_write (CamALApplication *application,
|
||||
CamSLSession *session, guint tag, guint8 *buffer,
|
||||
guint buffer_size, guint body_length);
|
||||
#endif /* CAM_APPLICATION_LAYER_H */
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* camapplicationinfo.h - CAM (EN50221) Application Info resource
|
||||
* Copyright (C) 2007 Alessandro Decina
|
||||
*
|
||||
*
|
||||
* Authors:
|
||||
* Alessandro Decina <alessandro@nnva.org>
|
||||
*
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* camconditionalaccess.h - CAM (EN50221) Conditional Access resource
|
||||
* Copyright (C) 2007 Alessandro Decina
|
||||
*
|
||||
*
|
||||
* Authors:
|
||||
* Alessandro Decina <alessandro@nnva.org>
|
||||
*
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* camdevice.h - GStreamer hardware CAM interface
|
||||
* Copyright (C) 2007 Alessandro Decina
|
||||
*
|
||||
*
|
||||
* Authors:
|
||||
* Alessandro Decina <alessandro@nnva.org>
|
||||
*
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* camresourcemanager.h - GStreamer CAM (EN50221) Resource Manager
|
||||
* Copyright (C) 2007 Alessandro Decina
|
||||
*
|
||||
*
|
||||
* Authors:
|
||||
* Alessandro Decina <alessandro@nnva.org>
|
||||
*
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* camsession.h - GStreamer CAM (EN50221) Session Layer
|
||||
* Copyright (C) 2007 Alessandro Decina
|
||||
*
|
||||
*
|
||||
* Authors:
|
||||
* Alessandro Decina <alessandro@nnva.org>
|
||||
*
|
||||
|
@ -53,10 +53,10 @@ typedef enum
|
|||
struct _CamSL
|
||||
{
|
||||
CamTL *tl;
|
||||
|
||||
|
||||
GHashTable *sessions;
|
||||
guint session_ids;
|
||||
|
||||
|
||||
/* callbacks */
|
||||
CamReturn (*open_session_request) (CamSL *sl, CamSLSession *session,
|
||||
CamSLResourceStatus *status);
|
||||
|
@ -64,7 +64,7 @@ struct _CamSL
|
|||
CamReturn (*session_closed) (CamSL *sl, CamSLSession *session);
|
||||
CamReturn (*session_data) (CamSL *sl, CamSLSession *session,
|
||||
guint8 *data, guint length);
|
||||
|
||||
|
||||
gpointer user_data;
|
||||
};
|
||||
|
||||
|
@ -72,10 +72,10 @@ struct _CamSLSession
|
|||
{
|
||||
CamSL *sl;
|
||||
CamTLConnection *connection;
|
||||
|
||||
|
||||
guint resource_id;
|
||||
guint16 session_nb;
|
||||
|
||||
|
||||
CamSLSessionState state;
|
||||
|
||||
gpointer user_data;
|
||||
|
@ -86,7 +86,7 @@ void cam_sl_destroy (CamSL *sl);
|
|||
|
||||
CamReturn cam_sl_create_session (CamSL *sl, CamTLConnection *connection,
|
||||
guint resource_id, CamSLSession **session);
|
||||
CamReturn cam_sl_session_close (CamSLSession *session);
|
||||
CamReturn cam_sl_session_close (CamSLSession *session);
|
||||
|
||||
void cam_sl_calc_buffer_size (CamSL *sl,
|
||||
guint body_length, guint *buffer_size, guint *offset);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* camswclient.h - GStreamer softcam client
|
||||
* Copyright (C) 2007 Alessandro Decina
|
||||
*
|
||||
*
|
||||
* Authors:
|
||||
* Alessandro Decina <alessandro@nnva.org>
|
||||
*
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* camtransport.h - GStreamer CAM (EN50221) transport layer
|
||||
* Copyright (C) 2007 Alessandro Decina
|
||||
*
|
||||
*
|
||||
* Authors:
|
||||
* Alessandro Decina <alessandro@nnva.org>
|
||||
*
|
||||
|
@ -53,9 +53,9 @@ struct _CamTL
|
|||
guint connection_ids;
|
||||
|
||||
GHashTable *connections;
|
||||
|
||||
|
||||
guint expected_tpdus;
|
||||
|
||||
|
||||
/* buffer containing module data */
|
||||
guint8 buffer [HOST_BUFFER_SIZE];
|
||||
/* number of bytes written in the buffer */
|
||||
|
@ -64,14 +64,14 @@ struct _CamTL
|
|||
guint8 *body;
|
||||
/* length of the body part */
|
||||
guint body_length;
|
||||
|
||||
|
||||
/* callbacks */
|
||||
void (*request_connection) (CamTL *tl, CamTLConnection *connection);
|
||||
void (*connection_created) (CamTL *tl, CamTLConnection *connection);
|
||||
void (*connection_deleted) (CamTL *tl, CamTLConnection *connection);
|
||||
CamReturn (*connection_data) (CamTL *tl, CamTLConnection *connection,
|
||||
guint8 *data, guint length);
|
||||
|
||||
|
||||
/* used by the upper layer to extend this layer */
|
||||
gpointer user_data;
|
||||
};
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* camutils.h - GStreamer CAM (EN50221) support
|
||||
* Copyright (C) 2007 Alessandro Decina
|
||||
*
|
||||
*
|
||||
* Authors:
|
||||
* Alessandro Decina <alessandro@nnva.org>
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue