Browse Source

libx264: Allow Stereo3D monoscopic value

tags/n3.1
Vittorio Giovara 9 years ago
parent
commit
9e2af0e907
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      libavcodec/libx264.c

+ 5
- 0
libavcodec/libx264.c 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;


Loading…
Cancel
Save