]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/libx265: export chosen picture types
authorMichael Niedermayer <michaelni@gmx.at>
Mon, 30 Mar 2015 22:37:46 +0000 (00:37 +0200)
committerDerek Buitenhuis <derek.buitenhuis@gmail.com>
Sun, 5 Apr 2015 16:32:07 +0000 (12:32 -0400)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
libavcodec/libx265.c

index d822467a535bbd107bfa8c8cbbb46348b01ed675..a7089b1bb6e96563e9f5bf5f5be514addf8f915d 100644 (file)
@@ -272,6 +272,19 @@ static int libx265_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
     pkt->pts = x265pic_out.pts;
     pkt->dts = x265pic_out.dts;
 
+    switch (x265pic_out.sliceType) {
+    case X265_TYPE_IDR:
+    case X265_TYPE_I:
+        avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
+        break;
+    case X265_TYPE_P:
+        avctx->coded_frame->pict_type = AV_PICTURE_TYPE_P;
+        break;
+    case X265_TYPE_B:
+        avctx->coded_frame->pict_type = AV_PICTURE_TYPE_B;
+        break;
+    }
+
     *got_packet = 1;
     return 0;
 }