From 747f091a77baad5d86789819b59d9dcaea261963 Mon Sep 17 00:00:00 2001
From: Paul Cadach <paul@odt.east.telecom.kz>
Date: Fri, 22 Sep 2006 19:56:07 +0000
Subject: [PATCH] Use own factory for our OpalMediaFormats too

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43496 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 channels/h323/compat_h323.h | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/channels/h323/compat_h323.h b/channels/h323/compat_h323.h
index 63da8ac8cc..5437898f4f 100644
--- a/channels/h323/compat_h323.h
+++ b/channels/h323/compat_h323.h
@@ -77,4 +77,18 @@ public:
 #endif
 #define H323_REGISTER_CAPABILITY(cls, capName) static MyPFactory<H323Capability>::Worker<cls> cls##Factory(capName, true)
 
+#ifdef OPAL_MEDIA_FORMAT_DECLARE
+#undef OPAL_MEDIA_FORMAT_DECLARE
+#endif
+
+#define OPAL_MEDIA_FORMAT_DECLARE(classname, _fullName, _defaultSessionID, _rtpPayloadType, _needsJitter,_bandwidth, _frameSize, _frameTime, _timeUnits, _timeStamp) \
+class classname : public OpalMediaFormat \
+{ \
+  public: \
+    classname() \
+      : OpalMediaFormat(_fullName, _defaultSessionID, _rtpPayloadType, _needsJitter, _bandwidth, \
+        _frameSize, _frameTime, _timeUnits, _timeStamp){} \
+}; \
+static MyPFactory<OpalMediaFormat>::Worker<classname> classname##Factory(_fullName, true)
+
 #endif /* !defined AST_H323_H */
-- 
GitLab