summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2016-04-11 17:28:26 -0400
committerVittorio Giovara <vittorio.giovara@gmail.com>2016-04-21 12:25:42 -0400
commit5fca95c8e515a5ae542d9626ec088bdfc658450e (patch)
tree25bf1c59d33e8d3468dc5cdab64884cf166cd5aa /libavcodec
parent9e2af0e9071a1229cfe21efff394691d91f979b2 (diff)
libx264: Forbid inverted Stereo3D mode
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/libx264.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
index 84678cb2e9..fddf1b3828 100644
--- a/libavcodec/libx264.c
+++ b/libavcodec/libx264.c
@@ -219,6 +219,13 @@ static void reconfig_encoder(AVCodecContext *ctx, const AVFrame *frame)
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) {
x4->params.i_frame_packing = fpa_type;
x264_encoder_reconfig(x4->enc, &x4->params);