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/app-cdr/k3b/files/k3b-2.0.3-libav-10.patch

18 lines
608 B

https://bugs.gentoo.org/509332
--- a/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp.
+++ b/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp
@@ -423,9 +423,9 @@
// mp3 being one of them sadly. Most importantly: allow the libsndfile decoder to do
// its thing.
//
- if( file->type() == CODEC_ID_WMAV1 ||
- file->type() == CODEC_ID_WMAV2 ||
- file->type() == CODEC_ID_AAC )
+ if( file->type() == AV_CODEC_ID_WMAV1 ||
+ file->type() == AV_CODEC_ID_WMAV2 ||
+ file->type() == AV_CODEC_ID_AAC )
#endif
return file;
}