[svn r69] Added comments to all files.
1.1 --- a/gmyth/src/gmyth_file_transfer.c Mon Nov 06 22:50:41 2006 +0000
1.2 +++ b/gmyth/src/gmyth_file_transfer.c Mon Nov 06 22:57:44 2006 +0000
1.3 @@ -1,10 +1,35 @@
1.4 /* vim: set sw=2: -*- Mode: C; tab-width: 2; indent-tabs-mode: t; c-basic-offset: 2; c-indent-level: 2-*- */
1.5 /**
1.6 - * GStreamer plug-in properties:
1.7 + * GMyth Library
1.8 + *
1.9 + * @file gmyth/gmyth_file_transfer.c
1.10 + *
1.11 + * @brief <p> GMythFileTransfer deals with the file streaming media remote/local
1.12 + * transfering to the MythTV frontend.
1.13 + *
1.14 + * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
1.15 + * @author Rosfran Lins Borges <rosfran.borges@indt.org.br>
1.16 + *
1.17 + *//*
1.18 + *
1.19 + * This program is free software; you can redistribute it and/or modify
1.20 + * it under the terms of the GNU Lesser General Public License as published by
1.21 + * the Free Software Foundation; either version 2 of the License, or
1.22 + * (at your option) any later version.
1.23 + *
1.24 + * This program is distributed in the hope that it will be useful,
1.25 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
1.26 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1.27 + * GNU General Public License for more details.
1.28 + *
1.29 + * You should have received a copy of the GNU Lesser General Public License
1.30 + * along with this program; if not, write to the Free Software
1.31 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1.32 + *
1.33 + * GStreamer MythTV plug-in properties:
1.34 * - location (backend server hostname/URL) [ex.: myth://192.168.1.73:28722/1000_1092091.nuv]
1.35 * - path (qurl - remote file to be opened)
1.36 - * - port number
1.37 - * @author Rosfran Lins Borges <rosfran.borges@indt.org.br>
1.38 + * - port number *
1.39 */
1.40
1.41 #include "gmyth_file_transfer.h"
2.1 --- a/gmyth/src/gmyth_file_transfer.h Mon Nov 06 22:50:41 2006 +0000
2.2 +++ b/gmyth/src/gmyth_file_transfer.h Mon Nov 06 22:57:44 2006 +0000
2.3 @@ -1,5 +1,32 @@
2.4 /* vim: set sw=2: -*- Mode: C; tab-width: 2; indent-tabs-mode: t; c-basic-offset: 2; c-indent-level: 2-*- */
2.5 -
2.6 +/**
2.7 + * GMyth Library
2.8 + *
2.9 + * @file gmyth/gmyth_file_transfer.h
2.10 + *
2.11 + * @brief <p> GMythFileTransfer deals with the file streaming media remote/local
2.12 + * transfering to the MythTV frontend.
2.13 + *
2.14 + * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
2.15 + * @author Rosfran Lins Borges <rosfran.borges@indt.org.br>
2.16 + *
2.17 + *//*
2.18 + *
2.19 + * This program is free software; you can redistribute it and/or modify
2.20 + * it under the terms of the GNU Lesser General Public License as published by
2.21 + * the Free Software Foundation; either version 2 of the License, or
2.22 + * (at your option) any later version.
2.23 + *
2.24 + * This program is distributed in the hope that it will be useful,
2.25 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
2.26 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2.27 + * GNU General Public License for more details.
2.28 + *
2.29 + * You should have received a copy of the GNU Lesser General Public License
2.30 + * along with this program; if not, write to the Free Software
2.31 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2.32 + */
2.33 +
2.34 #ifndef __GMYTH_FILE_TRANSFER_H__
2.35 #define __GMYTH_FILE_TRANSFER_H__
2.36
3.1 --- a/gmyth/src/gmyth_livetv.c Mon Nov 06 22:50:41 2006 +0000
3.2 +++ b/gmyth/src/gmyth_livetv.c Mon Nov 06 22:57:44 2006 +0000
3.3 @@ -1,4 +1,30 @@
3.4 -
3.5 +/**
3.6 + * GMyth Library
3.7 + *
3.8 + * @file gmyth/gmyth_livetv.c
3.9 + *
3.10 + * @brief <p> GMythLiveTV starts a remote TV session with the MythTV backend.
3.11 + *
3.12 + * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
3.13 + * @author Rosfran Lins Borges <rosfran.borges@indt.org.br>
3.14 + *
3.15 + *//*
3.16 + *
3.17 + * This program is free software; you can redistribute it and/or modify
3.18 + * it under the terms of the GNU Lesser General Public License as published by
3.19 + * the Free Software Foundation; either version 2 of the License, or
3.20 + * (at your option) any later version.
3.21 + *
3.22 + * This program is distributed in the hope that it will be useful,
3.23 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
3.24 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3.25 + * GNU General Public License for more details.
3.26 + *
3.27 + * You should have received a copy of the GNU Lesser General Public License
3.28 + * along with this program; if not, write to the Free Software
3.29 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
3.30 + */
3.31 +
3.32 #include "gmyth_context.h"
3.33 #include "gmyth_remote_util.h"
3.34 #include "gmyth_tvchain.h"
4.1 --- a/gmyth/src/gmyth_livetv.h Mon Nov 06 22:50:41 2006 +0000
4.2 +++ b/gmyth/src/gmyth_livetv.h Mon Nov 06 22:57:44 2006 +0000
4.3 @@ -1,3 +1,30 @@
4.4 +/**
4.5 + * GMyth Library
4.6 + *
4.7 + * @file gmyth/gmyth_livetv.h
4.8 + *
4.9 + * @brief <p> GMythLiveTV starts a remote TV session with the MythTV backend.
4.10 + *
4.11 + * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
4.12 + * @author Rosfran Lins Borges <rosfran.borges@indt.org.br>
4.13 + *
4.14 + *//*
4.15 + *
4.16 + * This program is free software; you can redistribute it and/or modify
4.17 + * it under the terms of the GNU Lesser General Public License as published by
4.18 + * the Free Software Foundation; either version 2 of the License, or
4.19 + * (at your option) any later version.
4.20 + *
4.21 + * This program is distributed in the hope that it will be useful,
4.22 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
4.23 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4.24 + * GNU General Public License for more details.
4.25 + *
4.26 + * You should have received a copy of the GNU Lesser General Public License
4.27 + * along with this program; if not, write to the Free Software
4.28 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
4.29 + */
4.30 +
4.31 #ifndef GMYTH_LIVETV_H_
4.32 #define GMYTH_LIVETV_H_
4.33