Skip to content

Commit

Permalink
Merge pull request #309 from Pluto-kk/master
Browse files Browse the repository at this point in the history
fix rtsp muxer getinfo api
  • Loading branch information
ireader authored Aug 30, 2023
2 parents 221c080 + fc08f52 commit 47df506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion librtsp/source/utils/rtsp-muxer.c
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ int rtsp_muxer_getinfo(struct rtsp_muxer_t* muxer, int pid, uint16_t* seq, uint3
pt = &muxer->payloads[pid];
*sdp = pt->sdp;
*size = pt->len;
rtp_payload_encode_getinfo(pt->rtp.rtp, seq, timestamp);
rtp_payload_encode_getinfo(pt->rtp.encoder, seq, timestamp);
return 0;
}

Expand Down

0 comments on commit 47df506

Please sign in to comment.