Miscellaneous fix (#3750)

* Fix various compile warnings (on MSVC2005 and Android)

* A function declaration without a prototype is deprecated in all versions of C

* Fix build warning on VS2022

* Minor update on sample app pjsua2 for Android Kotlin: add param to avoid activity recreation in activity config changes, useful in maintaining video window sizes on orientation change.

---------

Co-authored-by: sauwming <ming@teluu.com>
Co-authored-by: Riza Sulistyo <trengginas@users.noreply.github.com>
This commit is contained in:
Nanang Izzuddin 2023-11-01 11:32:43 +07:00 committed by GitHub
parent 33f64ba933
commit e4bcc71f59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 11 additions and 4 deletions

View File

@ -1745,6 +1745,8 @@ static pj_status_t decode_h264(pjmedia_vid_codec *codec,
buf_pos += frm_size;
}
PJ_UNUSED_ARG(frm_cnt);
return PJ_SUCCESS;
}

View File

@ -420,7 +420,7 @@
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_STRICT_PROTOTYPES = NO;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
@ -473,7 +473,7 @@
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_STRICT_PROTOTYPES = NO;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;

View File

@ -61,6 +61,7 @@ class MyAudioMediaPort: public AudioMediaPort
virtual void onFrameReceived(MediaFrame &frame)
{
PJ_UNUSED_ARG(frame);
// Process the incoming frame here
}
};

View File

@ -15,6 +15,7 @@
android:supportsRtl="true"
android:theme="@style/Theme.Android">
<activity android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

View File

@ -678,6 +678,8 @@ public:
dir(PJMEDIA_DIR_NONE),
txPt(0),
rxPt(0),
audTxEventPt(0),
audRxEventPt(0),
codecClockRate(0),
jbInit(-1),
jbMinPre(-1),

View File

@ -3449,7 +3449,7 @@ pj_status_t pjsua_acc_get_uac_addr(pjsua_acc_id acc_id,
/* If the URI uses sips scheme, make sure we use secure transport. */
if (PJSIP_URI_SCHEME_IS_SIPS(sip_uri)) {
unsigned flag, tp_flag;
unsigned tp_flag;
tp_flag = PJSIP_TRANSPORT_SECURE;
flag = pjsip_transport_get_flag_from_type(tp_type);
@ -3869,7 +3869,7 @@ PJ_DEF(pj_status_t) pjsua_acc_create_uas_contact( pj_pool_t *pool,
/* If the URI uses sips scheme, make sure we use secure transport. */
if (PJSIP_URI_SCHEME_IS_SIPS(sip_uri)) {
unsigned flag, tp_flag;
unsigned tp_flag;
tp_flag = PJSIP_TRANSPORT_SECURE;
flag = pjsip_transport_get_flag_from_type(tp_type);

View File

@ -151,6 +151,7 @@
# pragma warning(disable:4701) // potentially uninitialized local variable used
# pragma warning(disable:4702) // unreachable code
# pragma warning(disable:4703) // potentially uninitialized local pointer variable used
# pragma warning(disable:4204) // nonstandard extension used : non-constant aggregate initializer
#endif
/* clock() */