mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-22 15:23:11 +00:00
rtsp: Don't use a locale dependent format string
In this particular case, we aren't ever printing anything else than 0.000 anyway. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
parent
1b7ecc1662
commit
28e9c42afb
@ -103,8 +103,7 @@ static int rtsp_write_record(AVFormatContext *s)
|
||||
char cmd[1024];
|
||||
|
||||
snprintf(cmd, sizeof(cmd),
|
||||
"Range: npt=%0.3f-\r\n",
|
||||
(double) 0);
|
||||
"Range: npt=0.000-\r\n");
|
||||
ff_rtsp_send_cmd(s, "RECORD", rt->control_uri, cmd, reply, NULL);
|
||||
if (reply->status_code != RTSP_STATUS_OK)
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user