1 #include <lib/dvb/pvrparse.h>
2 #include <lib/base/eerror.h>
6 #error no byte order defined!
9 int eMPEGStreamInformation::save(const char *filename)
11 FILE *f = fopen(filename, "wb");
15 for (std::map<off_t, pts_t>::const_iterator i(m_access_points.begin()); i != m_access_points.end(); ++i)
17 unsigned long long d[2];
18 #if BYTE_ORDER == BIG_ENDIAN
22 d[0] = bswap_64(i->first);
23 d[1] = bswap_64(i->second);
25 fwrite(d, sizeof(d), 1, f);
32 int eMPEGStreamInformation::load(const char *filename)
34 FILE *f = fopen(filename, "rb");
37 m_access_points.clear();
38 m_pts_to_offset.clear();
39 pts_t last = -(1LL<<62);
40 int loaded = 0, skipped = 0;
43 unsigned long long d[2];
44 if (fread(d, sizeof(d), 1, f) < 1)
47 #if BYTE_ORDER == LITTLE_ENDIAN
48 d[0] = bswap_64(d[0]);
49 d[1] = bswap_64(d[1]);
51 if ((d[1] - last) > 90000/2)
53 m_access_points[d[0]] = d[1];
54 m_pts_to_offset.insert(std::pair<pts_t,off_t>(d[1], d[0]));
60 eDebug("loaded %d, skipped %d", loaded, skipped);
62 fixupDiscontinuties();
66 bool eMPEGStreamInformation::empty()
68 return m_access_points.empty();
71 void eMPEGStreamInformation::fixupDiscontinuties()
73 m_timestamp_deltas.clear();
74 if (!m_access_points.size())
77 // eDebug("Fixing discontinuities ...");
79 /* if we have no delta at the beginning, extrapolate it */
80 if ((m_access_points.find(0) == m_access_points.end()) && (m_access_points.size() > 1))
82 std::map<off_t,pts_t>::const_iterator second = m_access_points.begin();
83 std::map<off_t,pts_t>::const_iterator first = second++;
84 if (first->first < second->first) /* i.e., not equal or broken */
86 off_t diff = second->first - first->first;
87 pts_t tdiff = second->second - first->second;
88 tdiff *= first->first;
90 m_timestamp_deltas[0] = first->second - tdiff;
91 // eDebug("first delta is %08llx", first->second - tdiff);
95 if (m_timestamp_deltas.empty())
96 m_timestamp_deltas[m_access_points.begin()->first] = m_access_points.begin()->second;
98 pts_t currentDelta = m_timestamp_deltas.begin()->second, lastpts_t = 0;
99 for (std::map<off_t,pts_t>::const_iterator i(m_access_points.begin()); i != m_access_points.end(); ++i)
101 pts_t current = i->second - currentDelta;
102 pts_t diff = current - lastpts_t;
104 if (llabs(diff) > (90000*5)) // 5sec diff
106 // eDebug("%llx < %llx, have discont. new timestamp is %llx (diff is %llx)!", current, lastpts_t, i->second, diff);
107 currentDelta = i->second - lastpts_t; /* FIXME: should be the extrapolated new timestamp, based on the current rate */
108 // eDebug("current delta now %llx, making current to %llx", currentDelta, i->second - currentDelta);
109 m_timestamp_deltas[i->first] = currentDelta;
111 lastpts_t = i->second - currentDelta;
115 // eDebug("ok, found %d disconts.", m_timestamp_deltas.size());
118 for (off_t x=0x25807E34ULL; x < 0x25B3CF70; x+= 100000)
122 int r = getPTS(o, p);
123 eDebug("%08llx -> %08llx | %08llx, %d, %08llx %08llx", x, getDelta(x), getInterpolated(x), r, o, p);
128 pts_t eMPEGStreamInformation::getDelta(off_t offset)
130 if (!m_timestamp_deltas.size())
132 std::map<off_t,pts_t>::iterator i = m_timestamp_deltas.upper_bound(offset);
134 /* i can be the first when you query for something before the first PTS */
135 if (i != m_timestamp_deltas.begin())
141 int eMPEGStreamInformation::fixupPTS(const off_t &offset, pts_t &ts)
143 if (!m_timestamp_deltas.size())
146 std::multimap<pts_t, off_t>::const_iterator
147 l = m_pts_to_offset.upper_bound(ts - 60 * 90000),
148 u = m_pts_to_offset.upper_bound(ts + 60 * 90000),
149 nearest = m_pts_to_offset.end();
153 if ((nearest == m_pts_to_offset.end()) || (llabs(l->first - ts) < llabs(nearest->first - ts)))
157 if (nearest == m_pts_to_offset.end())
160 ts -= getDelta(nearest->second);
165 int eMPEGStreamInformation::getPTS(off_t &offset, pts_t &pts)
167 std::map<off_t,pts_t>::iterator before = m_access_points.lower_bound(offset);
169 /* usually, we prefer the AP before the given offset. however if there is none, we take any. */
170 if (before != m_access_points.begin())
173 if (before == m_access_points.end())
179 offset = before->first;
180 pts = before->second - getDelta(offset);
185 pts_t eMPEGStreamInformation::getInterpolated(off_t offset)
187 /* get the PTS values before and after the offset. */
188 std::map<off_t,pts_t>::iterator before, after;
189 after = m_access_points.upper_bound(offset);
192 if (before != m_access_points.begin())
194 else /* we query before the first known timestamp ... FIXME */
198 if (before == m_access_points.end())
201 /* if after == end, then we need to extrapolate ... FIXME */
202 if ((before->first == offset) || (after == m_access_points.end()))
203 return before->second - getDelta(offset);
205 pts_t before_ts = before->second - getDelta(before->first);
206 pts_t after_ts = after->second - getDelta(after->first);
208 // eDebug("%08llx .. ? .. %08llx", before_ts, after_ts);
209 // eDebug("%08llx .. %08llx .. %08llx", before->first, offset, after->first);
211 pts_t diff = after_ts - before_ts;
212 off_t diff_off = after->first - before->first;
214 diff = (offset - before->first) * diff / diff_off;
215 // eDebug("%08llx .. %08llx .. %08llx", before_ts, before_ts + diff, after_ts);
216 return before_ts + diff;
219 off_t eMPEGStreamInformation::getAccessPoint(pts_t ts)
221 /* FIXME: more efficient implementation */
223 for (std::map<off_t, pts_t>::const_iterator i(m_access_points.begin()); i != m_access_points.end(); ++i)
225 pts_t delta = getDelta(i->first);
226 pts_t c = i->second - delta;
234 int eMPEGStreamInformation::getNextAccessPoint(pts_t &ts, const pts_t &start, int direction)
236 off_t offset = getAccessPoint(start);
237 std::map<off_t, pts_t>::const_iterator i = m_access_points.find(offset);
238 if (i == m_access_points.end())
240 eDebug("getNextAccessPoint: initial AP not found");
247 if (i == m_access_points.end())
254 if (i == m_access_points.begin())
263 ts = i->second - getDelta(i->first);
264 eDebug("fine, at %llx - %llx = %llx", ts, i->second, getDelta(i->first));
265 eDebug("fine, at %lld - %lld = %lld", ts, i->second, getDelta(i->first));
269 eMPEGStreamParserTS::eMPEGStreamParserTS(eMPEGStreamInformation &streaminfo): m_streaminfo(streaminfo), m_pktptr(0), m_pid(-1), m_need_next_packet(0), m_skip(0)
273 int eMPEGStreamParserTS::processPacket(const unsigned char *pkt, off_t offset)
275 if (!wantPacket(pkt))
276 eWarning("something's wrong.");
278 const unsigned char *end = pkt + 188;
280 if (!(pkt[3] & 0x10))
282 eWarning("[TSPARSE] PUSI set but no payload.");
286 if (pkt[3] & 0x20) // adaption field present?
287 pkt += pkt[4] + 4 + 1; /* skip adaption field and header */
289 pkt += 4; /* skip header */
293 eWarning("[TSPARSE] dropping huge adaption field");
297 // ok, we now have the start of the payload, aligned with the PES packet start.
298 if (pkt[0] || pkt[1] || (pkt[2] != 1))
300 eWarning("broken startcode");
308 if (pkt[7] & 0x80) // PTS present?
310 pts = ((unsigned long long)(pkt[ 9]&0xE)) << 29;
311 pts |= ((unsigned long long)(pkt[10]&0xFF)) << 22;
312 pts |= ((unsigned long long)(pkt[11]&0xFE)) << 14;
313 pts |= ((unsigned long long)(pkt[12]&0xFF)) << 7;
314 pts |= ((unsigned long long)(pkt[13]&0xFE)) >> 1;
318 int sec = pts / 90000;
319 int frm = pts % 90000;
327 eDebug("pts: %016llx %d:%02d:%02d:%02d:%05d", pts, d, hr, min, sec, frm);
331 /* advance to payload */
334 /* sometimes, there are zeros before the startcode. */
335 while (pkt < (end-4))
336 if (pkt[0] || pkt[1] || pkt[2])
341 /* if startcode found */
342 // eDebug("%02x %02x %02x %02x", pkt[0], pkt[1], pkt[2], pkt[3]);
343 if (!(pkt[0] || pkt[1] || (pkt[2] != 1)))
345 if (pkt[3] == 0xb3) /* sequence header */
349 m_streaminfo.m_access_points[offset] = pts;
350 // eDebug("Sequence header at %llx, pts %llx", offset, pts);
352 /*eDebug("Sequence header but no valid PTS value.")*/;
355 if (pkt[3] == 0x09) /* MPEG4 AVC unit access delimiter */
359 m_streaminfo.m_access_points[offset] = pts;
360 // eDebug("MPEG4 AVC UAD at %llx, pts %llx", offset, pts);
362 /*eDebug("MPEG4 AVC UAD but no valid PTS value.")*/;
368 inline int eMPEGStreamParserTS::wantPacket(const unsigned char *hdr) const
372 eDebug("missing sync!");
375 int ppid = ((hdr[1]&0x1F) << 8) | hdr[2];
380 if (m_need_next_packet) /* next packet (on this pid) was required? */
383 if (hdr[1] & 0x40) /* pusi set: yes. */
389 void eMPEGStreamParserTS::parseData(off_t offset, const void *data, unsigned int len)
391 const unsigned char *packet = (const unsigned char*)data;
392 const unsigned char *packet_start = packet;
394 /* sorry for the redundant code here, but there are too many special cases... */
397 /* emergency resync. usually, this should not happen, because the data should
400 to make this code work for non-strictly-sync-aligned data, (for example, bad
401 files) we fix a possible resync here by skipping data until the next 0x47.
403 if this is a false 0x47, the packet will be dropped by wantPacket, and the
404 next time, sync will be re-established. */
406 while (!m_pktptr && len)
408 if (packet[0] == 0x47)
416 eDebug("SYNC LOST: skipped %d bytes.", skipped);
423 /* skip last packet */
426 unsigned int skiplen = -m_pktptr;
433 } else if (m_pktptr < 4) /* header not complete, thus we don't know if we want this packet */
435 unsigned int storelen = 4 - m_pktptr;
438 memcpy(m_pkt + m_pktptr, packet, storelen);
440 m_pktptr += storelen;
445 if (!wantPacket(m_pkt))
454 /* otherwise we complete up to the full packet */
455 unsigned int storelen = 188 - m_pktptr;
458 memcpy(m_pkt + m_pktptr, packet, storelen);
459 m_pktptr += storelen;
465 m_need_next_packet = processPacket(m_pkt, offset + (packet - packet_start));
468 } else if (len >= 4) /* if we have a full header... */
470 if (wantPacket(packet)) /* decide wheter we need it ... */
472 if (len >= 188) /* packet complete? */
474 m_need_next_packet = processPacket(packet, offset + (packet - packet_start)); /* process it now. */
477 memcpy(m_pkt, packet, len); /* otherwise queue it up */
486 else if (!m_pktptr) /* we dont want this packet, otherwise m_pktptr = sk (=len) > 4 */
491 } else /* if we don't have a complete header */
493 memcpy(m_pkt, packet, len); /* complete header next time */
501 void eMPEGStreamParserTS::setPid(int _pid)