1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

libx264: Allow Stereo3D monoscopic value

This commit is contained in:
Vittorio Giovara 2016-04-11 17:28:25 -04:00
parent a08b5d7b57
commit 9e2af0e907

View File

@ -209,6 +209,11 @@ static void reconfig_encoder(AVCodecContext *ctx, const AVFrame *frame)
case AV_STEREO3D_FRAMESEQUENCE:
fpa_type = 5;
break;
#if X264_BUILD >= 145
case AV_STEREO3D_2D:
fpa_type = 6;
break;
#endif
default:
fpa_type = -1;
break;