You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
Merge commit '5fca95c8e515a5ae542d9626ec088bdfc658450e'
* commit '5fca95c8e515a5ae542d9626ec088bdfc658450e': libx264: Forbid inverted Stereo3D mode Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
@ -254,6 +254,13 @@ static void reconfig_encoder(AVCodecContext *ctx, const AVFrame *frame)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Inverted mode is not supported by x264 */
|
||||||
|
if (stereo->flags & AV_STEREO3D_FLAG_INVERT) {
|
||||||
|
av_log(ctx, AV_LOG_WARNING,
|
||||||
|
"Ignoring unsupported inverted stereo value %d\n", fpa_type);
|
||||||
|
fpa_type = -1;
|
||||||
|
}
|
||||||
|
|
||||||
if (fpa_type != x4->params.i_frame_packing) {
|
if (fpa_type != x4->params.i_frame_packing) {
|
||||||
x4->params.i_frame_packing = fpa_type;
|
x4->params.i_frame_packing = fpa_type;
|
||||||
x264_encoder_reconfig(x4->enc, &x4->params);
|
x264_encoder_reconfig(x4->enc, &x4->params);
|
||||||
|
Reference in New Issue
Block a user