| 2910 | } |
| 2911 | |
| 2912 | void show_help_default(const char *opt, const char *arg) |
| 2913 | { |
| 2914 | av_log_set_callback(log_callback_help); |
| 2915 | show_usage(); |
| 2916 | show_help_options(options, "Main options:", 0, 0); |
| 2917 | printf("\n"); |
| 2918 | |
| 2919 | show_help_children(avformat_get_class(), AV_OPT_FLAG_DECODING_PARAM); |
| 2920 | show_help_children(avcodec_get_class(), AV_OPT_FLAG_DECODING_PARAM); |
| 2921 | } |
| 2922 | |
| 2923 | /** |
| 2924 | * Parse interval specification, according to the format: |
nothing calls this directly
no test coverage detected