mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
lavd/pulse_audio_dec: use default source when no input provided
PulseAudio expilitly requires name of the source. This patch makes it use default source when not provided. It simplifies programistic use. Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
30cac8313a
commit
96602f4e34
@ -154,7 +154,7 @@ static av_cold int pulse_read_header(AVFormatContext *s)
|
||||
|
||||
attr.fragsize = pd->fragment_size;
|
||||
|
||||
if (strcmp(s->filename, "default"))
|
||||
if (s->filename[0] != '\0' && strcmp(s->filename, "default"))
|
||||
device = s->filename;
|
||||
|
||||
if (!(pd->mainloop = pa_threaded_mainloop_new())) {
|
||||
|
Loading…
Reference in New Issue
Block a user