| 136 | } |
| 137 | |
| 138 | static void init_options(OptionsContext *o) |
| 139 | { |
| 140 | memset(o, 0, sizeof(*o)); |
| 141 | |
| 142 | o->stop_time = INT64_MAX; |
| 143 | o->mux_max_delay = 0.7; |
| 144 | o->start_time = AV_NOPTS_VALUE; |
| 145 | o->start_time_eof = AV_NOPTS_VALUE; |
| 146 | o->recording_time = INT64_MAX; |
| 147 | o->limit_filesize = INT64_MAX; |
| 148 | o->chapters_input_file = INT_MAX; |
| 149 | o->accurate_seek = 1; |
| 150 | o->thread_queue_size = 0; |
| 151 | o->input_sync_ref = -1; |
| 152 | o->find_stream_info = 1; |
| 153 | o->shortest_buf_duration = 10.f; |
| 154 | } |
| 155 | |
| 156 | static int show_hwaccels(void *optctx, const char *opt, const char *arg) |
| 157 | { |