Opened 19 years ago
Closed 19 years ago
#4365 closed patch (fixed)
mythmusic cannot play .wav files
| Reported by: | Owned by: | paulh | |
|---|---|---|---|
| Priority: | minor | Milestone: | 0.21 |
| Component: | mythmusic | Version: | head |
| Severity: | medium | Keywords: | |
| Cc: | Ticket locked: | no |
Description
mythmusic does not seem to play common PCM .wav files (as ripped from a CD for instance). I tracked it down to this code in avfDecoder::initialize():
// Determine the output format
// Given we are outputing to a sound card, this will always
// be a PCM format
fmt = guess_format("audio_device", NULL, NULL);
if (!fmt)
return FALSE;
It seems that there is no output format registered with the name "audio_device", so guess_format() returns NULL and we get the early return.
The attached hack patch "fixes" it for me, although it most certainly is not the right solution.
This may be related or duplicate of #4285.
Attachments (1)
Change History (4)
by , 19 years ago
| Attachment: | guess_format.patch added |
|---|
comment:1 by , 19 years ago
comment:2 by , 19 years ago
| Milestone: | unknown → 0.21 |
|---|---|
| Owner: | changed from to |
| Status: | new → assigned |
Note:
See TracTickets
for help on using tickets.

This may affect all files that use ffmpeg decoder.