From: wchang kim Date: Fri, 30 Jun 2023 01:16:21 +0000 (+0900) Subject: Fixed the build error using gcc 13 X-Git-Tag: accepted/tizen/unified/20230703.093337^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F19%2F295019%2F1;p=platform%2Fcore%2Fapi%2Fwebrtc.git Fixed the build error using gcc 13 Change-Id: I18c2d92099b8b5762cec3cf03af717e5c9d7ef31 --- diff --git a/include/webrtc_private.h b/include/webrtc_private.h index 766fdfc5..19116c77 100644 --- a/include/webrtc_private.h +++ b/include/webrtc_private.h @@ -716,7 +716,7 @@ int _set_transceiver_direction(webrtc_s *webrtc, unsigned int source_id, webrtc_ int _get_transceiver_direction(webrtc_s *webrtc, unsigned int source_id, webrtc_media_type_e media_type, webrtc_transceiver_direction_e *direction); int _set_transceiver_codec(webrtc_s *webrtc, unsigned int source_id, webrtc_media_type_e media_type, webrtc_transceiver_codec_e codec); int _get_transceiver_codec(webrtc_s *webrtc, unsigned int source_id, webrtc_media_type_e media_type, webrtc_transceiver_codec_e *codec); -int _foreach_supported_transceiver_codec(webrtc_s *webrtc, unsigned int source_id, webrtc_media_type_e media_type, webrtc_media_source_supported_transceiver_codec_cb callback, void *user_data); +int _foreach_supported_transceiver_codec(webrtc_s *webrtc, webrtc_media_source_type_e source_type, webrtc_media_type_e media_type, webrtc_media_source_supported_transceiver_codec_cb callback, void *user_data); /* file source */ int _set_media_path(webrtc_s *webrtc, unsigned int source_id, const char *path);