| 198 | static int OutputBuffer( sync_common_t * common ); |
| 199 | |
| 200 | static void saveChap( sync_stream_t * stream, hb_buffer_t * buf ) |
| 201 | { |
| 202 | if (stream->type != SYNC_TYPE_VIDEO || buf == NULL) |
| 203 | { |
| 204 | return; |
| 205 | } |
| 206 | if (buf->s.new_chap > 0) |
| 207 | { |
| 208 | stream->video.new_chap = buf->s.new_chap; |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | static void restoreChap( sync_stream_t * stream, hb_buffer_t * buf ) |
| 213 | { |
no outgoing calls
no test coverage detected