diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2020-01-26 21:47:26 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2020-01-27 22:45:06 +0100 |
commit | 26c7f91e6624b1a46e39fb887b07b77db6cee328 (patch) | |
tree | 0faf0969a3435d9c5bcbb2d5b5adaf31511c9517 /fftools | |
parent | 44be057380384ed8168d17571ffd2763506048e6 (diff) | |
download | ffmpeg-26c7f91e6624b1a46e39fb887b07b77db6cee328.tar.gz |
ffmpeg: Do not print "SDP:" on top of sdp files.
Fixes ticket #7068.
Diffstat (limited to 'fftools')
-rw-r--r-- | fftools/ffmpeg.c | 2 |
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); } |