summaryrefslogtreecommitdiff
path: root/fftools
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2020-01-26 21:47:26 +0100
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2020-01-27 22:45:06 +0100
commit26c7f91e6624b1a46e39fb887b07b77db6cee328 (patch)
tree0faf0969a3435d9c5bcbb2d5b5adaf31511c9517 /fftools
parent44be057380384ed8168d17571ffd2763506048e6 (diff)
ffmpeg: Do not print "SDP:" on top of sdp files.
Fixes ticket #7068.
Diffstat (limited to 'fftools')
-rw-r--r--fftools/ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c
index 6bcd7b94d2..b0bffe0a54 100644
--- a/fftools/ffmpeg.c
+++ b/fftools/ffmpeg.c
@@ -2776,7 +2776,7 @@ static void print_sdp(void)
if (avio_open2(&sdp_pb, sdp_filename, AVIO_FLAG_WRITE, &int_cb, NULL) < 0) {
av_log(NULL, AV_LOG_ERROR, "Failed to open sdp file '%s'\n", sdp_filename);
} else {
- avio_printf(sdp_pb, "SDP:\n%s", sdp);
+ avio_print(sdp_pb, sdp);
avio_closep(&sdp_pb);
av_freep(&sdp_filename);
}