Browse Source

Make libx264 take the pict_type input parameter into account,

thus making forced key frames work.

Patch by Nicolas George, nicolas d george a normalesup d org

Originally committed as revision 25567 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Nicolas George Carl Eugen Hoyos 15 years ago
parent
commit
3ab354d777
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      libavcodec/libx264.c

+ 5
- 1
libavcodec/libx264.c View File

@@ -100,7 +100,11 @@ static int X264_frame(AVCodecContext *ctx, uint8_t *buf,
}

x4->pic.i_pts = frame->pts;
x4->pic.i_type = X264_TYPE_AUTO;
x4->pic.i_type =
frame->pict_type == FF_I_TYPE ? X264_TYPE_KEYFRAME :
frame->pict_type == FF_P_TYPE ? X264_TYPE_P :
frame->pict_type == FF_B_TYPE ? X264_TYPE_B :
X264_TYPE_AUTO;
}

do {


Loading…
Cancel
Save