ekiga r5866 - in trunk: . src/endpoints



Author: dsandras
Date: Sun Jan  6 18:15:29 2008
New Revision: 5866
URL: http://svn.gnome.org/viewvc/ekiga?rev=5866&view=rev

Log:
Added Opal implementation of a CodecDescription able to load a
CodecDescription from an OpalMediaFormat.


Added:
   trunk/src/endpoints/opal-codec-description.cpp
   trunk/src/endpoints/opal-codec-description.h
Modified:
   trunk/ChangeLog

Modified: trunk/ChangeLog
==============================================================================
--- trunk/ChangeLog	(original)
+++ trunk/ChangeLog	Sun Jan  6 18:15:29 2008
@@ -1,5 +1,12 @@
 2008-01-06  Damien Sandras  <dsandras gnome org>
 
+	* src/endpoints/opal-codec-description.cpp,
+	src/endpoints/opal-codec-description.h:
+	Added Opal implementation of a CodecDescription able to load a
+	CodecDescription from an OpalMediaFormat.
+
+2008-01-06  Damien Sandras  <dsandras gnome org>
+
 	* protocol/skel/codec-description.cpp,
 	protocol/skel/codec-description.h,
 	protocol/skel/call.h,

Added: trunk/src/endpoints/opal-codec-description.cpp
==============================================================================
--- (empty file)
+++ trunk/src/endpoints/opal-codec-description.cpp	Sun Jan  6 18:15:29 2008
@@ -0,0 +1,56 @@
+
+/*
+ * Ekiga -- A VoIP and Video-Conferencing application
+ * Copyright (C) 2000-2008 Damien Sandras
+
+ * This program is free software; you can  redistribute it and/or modify
+ * it under the terms of the GNU 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 General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * Ekiga is licensed under the GPL license and as a special exception, you
+ * have permission to link or otherwise combine this program with the
+ * programs OPAL, OpenH323 and PWLIB, and distribute the combination, without
+ * applying the requirements of the GNU GPL to the OPAL, OpenH323 and PWLIB
+ * programs, as long as you do follow the requirements of the GNU GPL for all
+ * the rest of the software thus combined.
+ */
+
+
+/*
+ *                         opal-codec-description.cpp  -  description
+ *                         ------------------------------------------
+ *   begin                : written in January 2008 by Damien Sandras 
+ *   copyright            : (c) 2008 by Damien Sandras
+ *   description          : Opal codec description.
+ *
+ */
+
+#include <iostream>
+#include <sstream>
+
+#include "opal-codec-description.h"
+
+
+using namespace Opal;
+
+
+CodecDescription::CodecDescription (OpalMediaFormat & format)
+: Ekiga::CodecDescription ()
+{
+  name = (const char *) format.GetEncodingName ();
+  rate = format.GetClockRate ();
+  audio = (format.GetDefaultSessionID () == OpalMediaFormat::DefaultAudioSessionID);
+  if (format.IsValidForProtocol ("SIP"))
+    protocols.push_back ("SIP");
+  if (format.IsValidForProtocol ("H.323"))
+    protocols.push_back ("H.323");
+  protocols.sort ();
+}

Added: trunk/src/endpoints/opal-codec-description.h
==============================================================================
--- (empty file)
+++ trunk/src/endpoints/opal-codec-description.h	Sun Jan  6 18:15:29 2008
@@ -0,0 +1,60 @@
+
+/*
+ * Ekiga -- A VoIP and Video-Conferencing application
+ * Copyright (C) 2000-2008 Damien Sandras
+
+ * This program is free software; you can  redistribute it and/or modify
+ * it under the terms of the GNU 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 General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * Ekiga is licensed under the GPL license and as a special exception, you
+ * have permission to link or otherwise combine this program with the
+ * programs OPAL, OpenH323 and PWLIB, and distribute the combination, without
+ * applying the requirements of the GNU GPL to the OPAL, OpenH323 and PWLIB
+ * programs, as long as you do follow the requirements of the GNU GPL for all
+ * the rest of the software thus combined.
+ */
+
+
+/*
+ *                         opal-codec-description.h  -  description
+ *                         ------------------------------------------
+ *   begin                : written in January 2008 by Damien Sandras 
+ *   copyright            : (c) 2008 by Damien Sandras
+ *   description          : declaration of the interface of an Opal codec 
+ *                          description.
+ *
+ */
+
+#ifndef __OPAL_CODEC_DESCRIPTION_H__
+#define __OPAL_CODEC_DESCRIPTION_H__
+
+#include <opal/buildopts.h>
+#include <ptbuildopts.h>
+#include <ptlib.h>
+#include <opal/manager.h>
+
+#include "codec-description.h"
+
+namespace Opal {
+
+  /*** Codec description ***/
+  class CodecDescription 
+    : public Ekiga::CodecDescription
+    {
+  public:
+      /** Create a codec description from the given OpalMediaFormat
+       * @param format is a valid OpalMediaFormat
+       */
+      CodecDescription (OpalMediaFormat & format);
+    };
+}
+#endif



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]