Skip to content

Commit aab015d

Browse files
committed
rxtx: fix typo (MOD_NAMEs)
1 parent 14fcf5d commit aab015d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/rxtx/h264_sdp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
struct audio_frame2;
6868

6969
#define DEFAULT_SDP_COMPRESSION "lavc:codec=MJPG:safe"
70-
#define MOD_NAME "[vrxtx/sdp] "
70+
#define MOD_NAME "[rxtx/sdp] "
7171

7272
#define MAGIC to_fourcc('V', 'X', 'h', 's')
7373

src/rxtx/rtsp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ struct rtp;
7373
struct tx;
7474

7575
#define DEFAULT_RTSP_COMPRESSION "lavc:enc=libx264:safe"
76-
#define MOD_NAME "[vrxtx/h264_rtp] "
76+
#define MOD_NAME "[rxtx/rtsp] "
7777
#define MAGIC to_fourcc('R', 'T', 'r', 's')
7878

7979
struct h264_rtp_video_rxtx {
@@ -128,7 +128,7 @@ create_video_rxtx_h264_std(const struct rxtx_params *params)
128128
printf("[RTSP SERVER CHECK] no stream type... check capture devices input...\n");
129129
return nullptr;
130130
}
131-
s->rtsp_params.avType = avType;;
131+
s->rtsp_params.avType = avType;
132132

133133
s->rtsp_params.rtp_audio_src_port = params->medium[TX_MEDIA_AUDIO].rx_port;
134134
s->rtsp_params.rtp_video_src_port = params->medium[TX_MEDIA_VIDEO].rx_port;

0 commit comments

Comments
 (0)