Commit e3cfd1b2 authored by Derek Buitenhuis's avatar Derek Buitenhuis

Merge commit '9e2af0e9'

* commit '9e2af0e9':
  libx264: Allow Stereo3D monoscopic value
Merged-by: 's avatarDerek Buitenhuis <derek.buitenhuis@gmail.com>
parents d4acf9f2 9e2af0e9
......@@ -244,6 +244,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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment