You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-sound/karlyriceditor/files/karlyriceditor-1.4-ffmpeg_c...

38 lines
1.2 KiB

Index: karlyriceditor-1.4/src/ffmpegvideoencoder.cpp
===================================================================
--- karlyriceditor-1.4.orig/src/ffmpegvideoencoder.cpp
+++ karlyriceditor-1.4/src/ffmpegvideoencoder.cpp
@@ -397,6 +397,13 @@ int FFMpegVideoEncoderPriv::encodeImage(
// SWS conversion
convertImage_sws(img);
+#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54,2,0)
+ int out_size = avcodec_encode_video(pVideoCodecCtx,outbuf,outbuf_size,ppicture);
+
+ if (out_size > 0)
+ {
+ av_init_packet(&pkt);
+#else
av_init_packet( &pkt );
pkt.data = NULL;
pkt.size = 0;
@@ -408,6 +415,7 @@ int FFMpegVideoEncoderPriv::encodeImage(
if ( got_packet )
{
+#endif
if ( pVideoCodecCtx->coded_frame->pts != (int64_t) (0x8000000000000000LL) )
pkt.pts= av_rescale_q(pVideoCodecCtx->coded_frame->pts, pVideoCodecCtx->time_base, pVideoStream->time_base);
@@ -415,6 +423,10 @@ int FFMpegVideoEncoderPriv::encodeImage(
pkt.flags |= AV_PKT_FLAG_KEY;
pkt.stream_index = pVideoStream->index;
+#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54,2,0)
+ pkt.data = outbuf;
+ pkt.size = out_size;
+#endif
int ret = av_interleaved_write_frame(pOutputCtx, &pkt);