1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

for #133, show more info about rtp.

This commit is contained in:
winlin 2015-02-18 07:27:11 +08:00
parent 45c0b12958
commit 6a64164985
4 changed files with 41 additions and 25 deletions

View file

@ -76,10 +76,14 @@ private:
private:
std::string session;
// video stream.
std::string video_id;
int video_id;
std::string video_codec;
SrsRtpConn* video_rtp;
// audio stream.
std::string audio_id;
int audio_id;
std::string audio_codec;
int audio_sample_rate;
int audio_channel;
SrsRtpConn* audio_rtp;
// video sequence header.
std::string sps;