Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/262 #31

Merged
merged 16 commits into from
Jun 20, 2018
Prev Previous commit
Next Next commit
done for day
  • Loading branch information
szatmary committed Jun 19, 2018
commit c0b23c039cac929bdb11be45f02e9550010d6a47
2 changes: 2 additions & 0 deletions src/avc.c
Original file line number Diff line number Diff line change
Expand Up @@ -661,6 +661,7 @@ size_t mpeg_bitstream_parse(mpeg_bitstream_t* packet, caption_frame_t* frame, co
if (STREAM_TYPE_H264 == stream_type) {
sei_t sei;
sei_init(&sei);
exit(0);
// TODO B frame latency
packet->status = libcaption_status_update(packet->status, sei_parse(&sei, &packet->data[4], scpos - 4, dts, cts));
packet->status = libcaption_status_update(packet->status, sei_to_caption_frame(&sei, frame));
Expand All @@ -672,6 +673,7 @@ size_t mpeg_bitstream_parse(mpeg_bitstream_t* packet, caption_frame_t* frame, co
// TODO double check this!
sei_t sei;
sei_init(&sei);
exit(0);
// TODO B frame latency
packet->status = libcaption_status_update(packet->status, sei_parse(&sei, &packet->data[5], scpos - 5, dts, cts));
packet->status = libcaption_status_update(packet->status, sei_to_caption_frame(&sei, frame));
Expand Down
2 changes: 1 addition & 1 deletion src/eia608_from_utf8.c.cached
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Generated by re2c 1.0.3 on Mon Jun 18 22:02:02 2018 */
/* Generated by re2c 1.0.3 on Mon Jun 18 22:16:29 2018 */
/**********************************************************************************************/
/* The MIT License */
/* */
Expand Down