diff options
author | Jan Ekström <jeebjp@gmail.com> | 2022-10-19 11:44:03 +0200 |
---|---|---|
committer | Thilo Borgmann <thilo.borgmann@mail.de> | 2022-10-19 11:53:52 +0200 |
commit | c889248647780753ec8b05138c7de4a707adb106 (patch) | |
tree | 910367793d41e033e80341659c6654cfce373822 /fftools/ffmpeg.h | |
parent | 81bc4ef14292f77b7dcea01b00e6f2ec1aea4b32 (diff) | |
download | ffmpeg-c889248647780753ec8b05138c7de4a707adb106.tar.gz |
ffmpeg: Add display_{rotation, hflip, vflip} options
This enables overriding the rotation as well as horizontal/vertical
flip state of a specific video stream on the input side.
Additionally, switch the singular test that was utilizing the rotation
metadata to instead override the input display rotation, thus leading
to the same result.
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r-- | fftools/ffmpeg.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index 91c5cfa3ab..13a2100439 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -194,6 +194,12 @@ typedef struct OptionsContext { int nb_force_fps; SpecifierOpt *frame_aspect_ratios; int nb_frame_aspect_ratios; + SpecifierOpt *display_rotations; + int nb_display_rotations; + SpecifierOpt *display_hflips; + int nb_display_hflips; + SpecifierOpt *display_vflips; + int nb_display_vflips; SpecifierOpt *rc_overrides; int nb_rc_overrides; SpecifierOpt *intra_matrices; |