* hb_stream_read *********************************************************************** * **********************************************************************/
| 1746 | * |
| 1747 | **********************************************************************/ |
| 1748 | hb_buffer_t * hb_stream_read( hb_stream_t * src_stream ) |
| 1749 | { |
| 1750 | if ( src_stream->hb_stream_type == ffmpeg ) |
| 1751 | { |
| 1752 | return hb_ffmpeg_read( src_stream ); |
| 1753 | } |
| 1754 | if ( src_stream->hb_stream_type == program ) |
| 1755 | { |
| 1756 | return hb_ps_stream_decode( src_stream ); |
| 1757 | } |
| 1758 | return hb_ts_stream_decode( src_stream ); |
| 1759 | } |
| 1760 | |
| 1761 | int64_t ffmpeg_initial_timestamp( hb_stream_t * stream ) |
| 1762 | { |
no test coverage detected