slackbuilds_ponce/multimedia/k9copy/k9copy-2.3.7-ffmpeg.patch
Roberto Neri dbe996e4b0 multimedia/k9copy: Added patch for new ffmpeg.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
2011-12-16 20:02:46 -02:00

15 lines
664 B
Diff

Fix build with ffmpeg/libav trunk after the big bump.
Index: k9copy-2.3.7-Source/src/import/k9avidecode.cpp
===================================================================
--- k9copy-2.3.7-Source.orig/src/import/k9avidecode.cpp
+++ k9copy-2.3.7-Source/src/import/k9avidecode.cpp
@@ -145,7 +145,7 @@ bool k9AviDecode::open(const QString & _
// Find the first video stream
m_videoStream=-1;
for (i=0; i<m_FormatCtx->nb_streams; i++)
- if (m_FormatCtx->streams[i]->codec->codec_type==CODEC_TYPE_VIDEO) {
+ if (m_FormatCtx->streams[i]->codec->codec_type==AVMEDIA_TYPE_VIDEO) {
m_videoStream=i;
break;
}