From f4d89e410ae1f1df4247b72ed19a97222113e8e7 Mon Sep 17 00:00:00 2001 From: tilghman Date: Tue, 1 Dec 2009 20:27:37 +0000 Subject: 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 --- addons/chan_ooh323.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'addons/chan_ooh323.h') 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 #include #include - +#include #include #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); -- cgit v1.2.3