| 1759 | } |
| 1760 | |
| 1761 | int64_t ffmpeg_initial_timestamp( hb_stream_t * stream ) |
| 1762 | { |
| 1763 | AVFormatContext *ic = stream->ffmpeg_ic; |
| 1764 | if (ic->start_time != AV_NOPTS_VALUE) |
| 1765 | return ic->start_time; |
| 1766 | else |
| 1767 | return 0; |
| 1768 | } |
| 1769 | |
| 1770 | int hb_stream_seek_chapter( hb_stream_t * stream, int chapter_num ) |
| 1771 | { |
no outgoing calls
no test coverage detected