Skip to content

Commit

Permalink
For #1638, #307, add comments for api and enum
Browse files Browse the repository at this point in the history
  • Loading branch information
winlinvip committed Mar 16, 2020
1 parent 2f0b150 commit c2a667c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions trunk/src/app/srs_app_http_api.cpp
Expand Up @@ -818,6 +818,7 @@ srs_error_t SrsGoApiSdp::serve_http(ISrsHttpResponseWriter* w, ISrsHttpMessage*
string app = app_obj->to_str();
string stream_name = stream_name_obj->to_str();

// TODO: FIXME: It seems remote_sdp doesn't represents the full SDP information.
SrsSdp remote_sdp;
err = remote_sdp.decode(remote_sdp_str);
if (err != srs_success) {
Expand Down
1 change: 1 addition & 0 deletions trunk/src/app/srs_app_rtc_conn.hpp
Expand Up @@ -110,6 +110,7 @@ class SrsSdp

enum SrsRtcSessionStateType
{
// TODO: FIXME: Should prefixed by enum name.
INIT = -1,
WAITING_STUN = 1,
DOING_DTLS_HANDSHAKE = 2,
Expand Down
1 change: 0 additions & 1 deletion trunk/src/app/srs_app_source.cpp
Expand Up @@ -327,7 +327,6 @@ srs_error_t SrsMessageQueue::dump_packets(int max_count, SrsSharedPtrMessage** p
return err;
}


srs_error_t SrsMessageQueue::dump_packets(SrsConsumer* consumer, bool atc, SrsRtmpJitterAlgorithm ag)
{
srs_error_t err = srs_success;
Expand Down
1 change: 1 addition & 0 deletions trunk/src/app/srs_app_source.hpp
Expand Up @@ -325,6 +325,7 @@ class SrsMixQueue
virtual SrsSharedPtrMessage* pop();
};

// To find the RTP packet for RTX or restore.
class SrsRtpPacketQueue
{
private:
Expand Down

0 comments on commit c2a667c

Please sign in to comment.