| 437 | } |
| 438 | |
| 439 | static int ts_index_of_video(hb_stream_t *stream) |
| 440 | { |
| 441 | int i; |
| 442 | |
| 443 | for ( i = 0; i < stream->ts.count; ++i ) |
| 444 | if ( V == ts_stream_kind( stream, i ) ) |
| 445 | return i; |
| 446 | |
| 447 | return -1; |
| 448 | } |
| 449 | |
| 450 | static void ts_err( hb_stream_t *stream, int curstream, char *log, ... ) |
| 451 | { |
no test coverage detected