Opened 19 years ago
Closed 19 years ago
#3724 closed defect (invalid)
Call to StreamID::Normalize missing QString parameter
| Reported by: | anonymous | Owned by: | Isaac Richards |
|---|---|---|---|
| Priority: | minor | Milestone: | 0.21 |
| Component: | mythtv | Version: | head |
| Severity: | medium | Keywords: | |
| Cc: | Ticket locked: | no |
Description
Hello, I've just tried building mythtv from SVN (r13910), and it stops compiling because there is a call to StreamID::Normalize in libs/libmythtv/mpeg/mpegtables.cpp in line 631 that is missing the last parameter. If I change that line from
types[i] = StreamID::Normalize(types[i], desc);
to
types[i] = StreamID::Normalize(types[i], desc, sistandard);
as it is on the previous calls to StreamID::Normalize, it will build.
Note:
See TracTickets
for help on using tickets.

Check the integrety of your checkout. There is no StreamID::Normanlize() in line 631 of libs/libmythtv/mpeg/mpegtables.cpp and all other usages are correct.