comparison stream/stream_rtp.c @ 24257:d261f5109660

cosmetics: typo fix UNSUPORTED --> UNSUPPORTED
author diego
date Tue, 28 Aug 2007 22:38:45 +0000
parents a3ddd3320b47
children c1d17bd6683c
comparison
equal deleted inserted replaced
24256:587555a43c76 24257:d261f5109660
83 mp_msg (MSGT_NETWORK, MSGL_ERR, 83 mp_msg (MSGT_NETWORK, MSGL_ERR,
84 "You must enter a port number for RTP streams!\n"); 84 "You must enter a port number for RTP streams!\n");
85 streaming_ctrl_free (stream->streaming_ctrl); 85 streaming_ctrl_free (stream->streaming_ctrl);
86 stream->streaming_ctrl = NULL; 86 stream->streaming_ctrl = NULL;
87 87
88 return STREAM_UNSUPORTED; 88 return STREAM_UNSUPPORTED;
89 } 89 }
90 90
91 if (rtp_streaming_start (stream) < 0) 91 if (rtp_streaming_start (stream) < 0)
92 { 92 {
93 mp_msg (MSGT_NETWORK, MSGL_ERR, "rtp_streaming_start failed\n"); 93 mp_msg (MSGT_NETWORK, MSGL_ERR, "rtp_streaming_start failed\n");
94 streaming_ctrl_free (stream->streaming_ctrl); 94 streaming_ctrl_free (stream->streaming_ctrl);
95 stream->streaming_ctrl = NULL; 95 stream->streaming_ctrl = NULL;
96 96
97 return STREAM_UNSUPORTED; 97 return STREAM_UNSUPPORTED;
98 } 98 }
99 99
100 stream->type = STREAMTYPE_STREAM; 100 stream->type = STREAMTYPE_STREAM;
101 fixup_network_stream_cache (stream); 101 fixup_network_stream_cache (stream);
102 102