# HG changeset patch
# User rosfran
# Date 1162853864 0
# Node ID 8113a3dce6cebef7dd9a264991139531338d8646
# Parent 0ae13d61ffd31c42a0e60c2687fe8a1ae57dad1c
[svn r69] Added comments to all files.
diff -r 0ae13d61ffd3 -r 8113a3dce6ce gmyth/src/gmyth_file_transfer.c
--- a/gmyth/src/gmyth_file_transfer.c Mon Nov 06 22:50:41 2006 +0000
+++ b/gmyth/src/gmyth_file_transfer.c Mon Nov 06 22:57:44 2006 +0000
@@ -1,10 +1,35 @@
/* vim: set sw=2: -*- Mode: C; tab-width: 2; indent-tabs-mode: t; c-basic-offset: 2; c-indent-level: 2-*- */
/**
- * GStreamer plug-in properties:
+ * GMyth Library
+ *
+ * @file gmyth/gmyth_file_transfer.c
+ *
+ * @brief
GMythFileTransfer deals with the file streaming media remote/local
+ * transfering to the MythTV frontend.
+ *
+ * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
+ * @author Rosfran Lins Borges
+ *
+ *//*
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser 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 Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * GStreamer MythTV plug-in properties:
* - location (backend server hostname/URL) [ex.: myth://192.168.1.73:28722/1000_1092091.nuv]
* - path (qurl - remote file to be opened)
- * - port number
- * @author Rosfran Lins Borges
+ * - port number *
*/
#include "gmyth_file_transfer.h"
diff -r 0ae13d61ffd3 -r 8113a3dce6ce gmyth/src/gmyth_file_transfer.h
--- a/gmyth/src/gmyth_file_transfer.h Mon Nov 06 22:50:41 2006 +0000
+++ b/gmyth/src/gmyth_file_transfer.h Mon Nov 06 22:57:44 2006 +0000
@@ -1,5 +1,32 @@
/* vim: set sw=2: -*- Mode: C; tab-width: 2; indent-tabs-mode: t; c-basic-offset: 2; c-indent-level: 2-*- */
-
+/**
+ * GMyth Library
+ *
+ * @file gmyth/gmyth_file_transfer.h
+ *
+ * @brief GMythFileTransfer deals with the file streaming media remote/local
+ * transfering to the MythTV frontend.
+ *
+ * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
+ * @author Rosfran Lins Borges
+ *
+ *//*
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser 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 Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
#ifndef __GMYTH_FILE_TRANSFER_H__
#define __GMYTH_FILE_TRANSFER_H__
diff -r 0ae13d61ffd3 -r 8113a3dce6ce gmyth/src/gmyth_livetv.c
--- a/gmyth/src/gmyth_livetv.c Mon Nov 06 22:50:41 2006 +0000
+++ b/gmyth/src/gmyth_livetv.c Mon Nov 06 22:57:44 2006 +0000
@@ -1,4 +1,30 @@
-
+/**
+ * GMyth Library
+ *
+ * @file gmyth/gmyth_livetv.c
+ *
+ * @brief GMythLiveTV starts a remote TV session with the MythTV backend.
+ *
+ * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
+ * @author Rosfran Lins Borges
+ *
+ *//*
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser 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 Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
#include "gmyth_context.h"
#include "gmyth_remote_util.h"
#include "gmyth_tvchain.h"
diff -r 0ae13d61ffd3 -r 8113a3dce6ce gmyth/src/gmyth_livetv.h
--- a/gmyth/src/gmyth_livetv.h Mon Nov 06 22:50:41 2006 +0000
+++ b/gmyth/src/gmyth_livetv.h Mon Nov 06 22:57:44 2006 +0000
@@ -1,3 +1,30 @@
+/**
+ * GMyth Library
+ *
+ * @file gmyth/gmyth_livetv.h
+ *
+ * @brief GMythLiveTV starts a remote TV session with the MythTV backend.
+ *
+ * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
+ * @author Rosfran Lins Borges
+ *
+ *//*
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser 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 Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
#ifndef GMYTH_LIVETV_H_
#define GMYTH_LIVETV_H_