[FFmpeg-devel] [PATCH v6 1/2] ffmpeg: Add display_{rotation, hflip, vflip} options

2022-09-25 Thread Thilo Borgmann
From: Jan Ekström 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

Re: [FFmpeg-devel] [PATCH v6 1/2] ffmpeg: Add display_{rotation, hflip, vflip} options

2022-10-04 Thread Anton Khirnov
Quoting Thilo Borgmann (2022-09-26 07:57:52) > From: Jan Ekström > > 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 ove

Re: [FFmpeg-devel] [PATCH v6 1/2] ffmpeg: Add display_{rotation, hflip, vflip} options

2022-10-15 Thread Thilo Borgmann
Am 04.10.22 um 10:44 schrieb Anton Khirnov: Quoting Thilo Borgmann (2022-09-26 07:57:52) From: Jan Ekström 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

Re: [FFmpeg-devel] [PATCH v6 1/2] ffmpeg: Add display_{rotation, hflip, vflip} options

2022-10-17 Thread Anton Khirnov
Quoting Thilo Borgmann (2022-10-15 12:27:54) > > av_stream_new_side_data() returns uint8_t*. > > So it is either add a cast to if(...) or two casts to av_display_...(). Better to have one cast than two. (I also prefer to avoid assignments inside conditions, but not going to bitch about this very