Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ad -F+i option to allow setting ffmpeg options that apply to input only. #8397

Merged
merged 5 commits into from
Mar 8, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fotgot to add 'i' to the process modifier function.
  • Loading branch information
joa-quim committed Mar 8, 2024
commit 67f0b39fb0ba6b4fead8264994b9061d378ec554
2 changes: 1 addition & 1 deletion src/movie.c
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ static int parse (struct GMT_CTRL *GMT, struct MOVIE_CTRL *Ctrl, struct GMT_OPTI
break;

case 'F': /* Set movie format and optional FFmpeg options */
if ((c = gmt_first_modifier (GMT, opt->arg, "lostv"))) { /* Process any modifiers */
if ((c = gmt_first_modifier (GMT, opt->arg, "liostv"))) { /* Process any modifiers */
do_view = false;
pos = 0; /* Reset to start of new word */
o = NULL;
Expand Down
Loading