aboutsummaryrefslogtreecommitdiffstats
path: root/addons/chan_ooh323.h
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-12-01 20:27:37 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-12-01 20:27:37 +0000
commitf4d89e410ae1f1df4247b72ed19a97222113e8e7 (patch)
tree72344fb3a18484772df8f496cc1f9be6e902c64f /addons/chan_ooh323.h
parentf925470a1b0577798cad89472fbc14657a6a4d58 (diff)
More 32->64 bit codec conversions.
In the process of swapping ULAW to a place in the extended codec space, we found several unhandled cases, where a 32-bit integer was still being used to handle a codec field. Most of these have been fixed with this commit, although there is at least one case (codec_dahdi) which depends upon outside headers to be altered before a conversion can be made. (Fixes AST-278, SWP-459) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@231850 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'addons/chan_ooh323.h')
-rw-r--r--addons/chan_ooh323.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/addons/chan_ooh323.h b/addons/chan_ooh323.h
index 5d0312910..79d0e248e 100644
--- a/addons/chan_ooh323.h
+++ b/addons/chan_ooh323.h
@@ -60,7 +60,7 @@
#include <asterisk/manager.h>
#include <asterisk/dsp.h>
#include <asterisk/stringfields.h>
-
+#include <asterisk/frame_defs.h>
#include <asterisk/udptl.h>
#include "ootypes.h"
@@ -104,7 +104,7 @@ void ooh323_set_read_format(ooCallData *call, int fmt);
int ooh323_update_capPrefsOrderForCall
(ooCallData *call, struct ast_codec_pref *prefs);
-int ooh323_convertAsteriskCapToH323Cap(int cap);
+int ooh323_convertAsteriskCapToH323Cap(format_t cap);
int ooh323_convert_hangupcause_asteriskToH323(int cause);
int ooh323_convert_hangupcause_h323ToAsterisk(int cause);