| 167 | } |
| 168 | |
| 169 | static void init_options(OptionsContext *o) |
| 170 | { |
| 171 | memset(o, 0, sizeof(*o)); |
| 172 | |
| 173 | o->stop_time = INT64_MAX; |
| 174 | o->mux_max_delay = 0.7; |
| 175 | o->start_time = AV_NOPTS_VALUE; |
| 176 | o->start_time_eof = AV_NOPTS_VALUE; |
| 177 | o->recording_time = INT64_MAX; |
| 178 | o->limit_filesize = UINT64_MAX; |
| 179 | o->chapters_input_file = INT_MAX; |
| 180 | o->accurate_seek = 1; |
| 181 | } |
| 182 | |
| 183 | static int show_hwaccels(void *optctx, const char *opt, const char *arg) |
| 184 | { |