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:
Lukasz Marek 2013-10-24 18:10:06 +02:00
parent 2cf94485de
commit c6c70c2bf7

View File

@ -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;