mirror of
https://github.com/librempeg/librempeg
synced 2024-11-21 16:44:05 +00:00
lavd/pulse_audio_enc: add another default to stream name
Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com>
This commit is contained in:
parent
2cf94485de
commit
c6c70c2bf7
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user