summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavdevice/pulse_audio_enc.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/libavdevice/pulse_audio_enc.c b/libavdevice/pulse_audio_enc.c
index 53436969f0..86ef6488c0 100644
--- a/libavdevice/pulse_audio_enc.c
+++ b/libavdevice/pulse_audio_enc.c
@@ -59,8 +59,12 @@ static av_cold int pulse_write_header(AVFormatContext *h)
return AVERROR(EINVAL);
}
- if (!stream_name)
- stream_name = h->filename;
+ if (!stream_name) {
+ if (h->filename)
+ stream_name = h->filename;
+ else
+ stream_name = "Playback";
+ }
ss.format = codec_id_to_pulse_format(st->codec->codec_id);
ss.rate = st->codec->sample_rate;