mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
43 lines
1.7 KiB
Diff
43 lines
1.7 KiB
Diff
Index: k3b-2.0.2/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp
|
|
===================================================================
|
|
--- k3b-2.0.2.orig/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp 2013-04-22 17:46:13.523959500 +0200
|
|
+++ k3b-2.0.2/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp 2013-04-22 18:40:49.890007513 +0200
|
|
@@ -95,7 +95,7 @@ bool K3bFFMpegFile::open()
|
|
}
|
|
|
|
// analyze the streams
|
|
- ::av_find_stream_info( d->formatContext );
|
|
+ ::avformat_find_stream_info( d->formatContext, 0 );
|
|
|
|
// we only handle files containing one audio stream
|
|
if( d->formatContext->nb_streams != 1 ) {
|
|
@@ -129,7 +129,7 @@ bool K3bFFMpegFile::open()
|
|
|
|
// open the codec on our context
|
|
kDebug() << "(K3bFFMpegFile) found codec for " << m_filename;
|
|
- if( ::avcodec_open( codecContext, d->codec ) < 0 ) {
|
|
+ if( ::avcodec_open2( codecContext, d->codec, 0 ) < 0 ) {
|
|
kDebug() << "(K3bFFMpegDecoderFactory) could not open codec.";
|
|
return false;
|
|
}
|
|
--- k3b-2.0.2/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp.orig 2013-07-12 23:05:37.371157123 -0400
|
|
+++ k3b-2.0.2/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp 2013-07-12 23:12:01.649948739 -0400
|
|
@@ -55,7 +55,7 @@
|
|
K3b::Msf length;
|
|
|
|
// for decoding. ffmpeg requires 16-byte alignment.
|
|
- char outputBuffer[AVCODEC_MAX_AUDIO_FRAME_SIZE + 15];
|
|
+ char outputBuffer[192000 + 15];
|
|
char* alignedOutputBuffer;
|
|
char* outputBufferPos;
|
|
int outputBufferSize;
|
|
@@ -319,7 +319,7 @@
|
|
}
|
|
|
|
d->outputBufferPos = d->alignedOutputBuffer;
|
|
- d->outputBufferSize = AVCODEC_MAX_AUDIO_FRAME_SIZE;
|
|
+ d->outputBufferSize = 192000;
|
|
|
|
#if LIBAVCODEC_VERSION_MAJOR < 52
|
|
int len = ::avcodec_decode_audio(
|