Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
1098439
WHIP: Refine name.
winlinvip Jun 7, 2023
101ebd8
WHIP: Refine SRTP key macros.
winlinvip Jun 8, 2023
01a23e7
WHIP: Refine logging context.
winlinvip Jun 8, 2023
5cd5aff
WHIP: Refine SSL error messages
winlinvip Jun 8, 2023
ae9f28d
WHIP: Refine DTLS error messages.
winlinvip Jun 8, 2023
881811e
WHIP: Refine RTC error messages.
winlinvip Jun 8, 2023
2922d3c
WHIP: Use AV_RB8 to read integer from memory.
winlinvip Jun 8, 2023
91ae61f
WHIP: Update DTLS curve list to X25519:P-256:P-384:P-521 according to…
winlinvip Jun 8, 2023
7e60968
WHIP: Refine SRTP profile name for FFmpeg and OpenSSL.
winlinvip Jun 8, 2023
bc0413b
WHIP: Replace the magic number to a macro and extract to a function i…
winlinvip Jun 8, 2023
70683db
WHIP: Altered all log levels from INFO to VERBOSE, except for the fin…
winlinvip Jun 8, 2023
004c995
WHIP: Use typedef SRTPContext
winlinvip Jun 8, 2023
03f1ce0
WHIP: Refine the ICE STUN magic number.
winlinvip Jun 8, 2023
5aef9f7
WHIP: Reposition the on_rtp_write_packet function slightly earlier in…
winlinvip Jun 8, 2023
b068d4d
WHIP: Referring to Chrome definition of RTP payload types.
winlinvip Jun 8, 2023
ac49d7d
WHIP: Replace the magic number with a macro for both RTP and RTCP pay…
winlinvip Jun 8, 2023
93d5c42
WHIP: Rename to WHIP muxer
winlinvip Jun 8, 2023
9a67150
WHIP: Add TODO for OPUS timestamp issue.
winlinvip Jun 8, 2023
fd92e47
WHIP: Refine comments, do not hardcode h.264
winlinvip Jun 8, 2023
2e7d345
WHIP: Define SDP session id and creator ip as macro.
winlinvip Jun 8, 2023
d866ac3
WHIP: Refine the fixed frame size 960 to rtc->audio_par->frame_size.
winlinvip Jun 8, 2023
6598ffc
WHIP: Use h264_mp4toannexb to convert MP4/ISOM to annexb.
winlinvip Jun 9, 2023
961c95c
WHIP: Occasionally, the timestamp of OPUS audio may be inaccurate, pa…
winlinvip Jun 9, 2023
e459364
WHIP: After utilizing BSF, the marker is correctly set to correct, re…
winlinvip Jun 9, 2023
a0823aa
WHIP: After using BSF, there is no longer dependency on avc.h
winlinvip Jun 9, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libavformat/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ OBJS-$(CONFIG_RSD_DEMUXER) += rsd.o
OBJS-$(CONFIG_RPL_DEMUXER) += rpl.o
OBJS-$(CONFIG_RSO_DEMUXER) += rsodec.o rso.o pcm.o
OBJS-$(CONFIG_RSO_MUXER) += rsoenc.o rso.o rawenc.o
OBJS-$(CONFIG_RTC_MUXER) += rtcenc.o avc.o http.o srtp.o
OBJS-$(CONFIG_RTC_MUXER) += rtcenc.o http.o srtp.o
OBJS-$(CONFIG_RTP_MPEGTS_MUXER) += rtpenc_mpegts.o
OBJS-$(CONFIG_RTP_MUXER) += rtp.o \
rtpenc_aac.o \
Expand Down
Loading