diff options
Diffstat (limited to 'plugins/decoder/ffmpeg')
-rw-r--r-- | plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp b/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp index a5f104c..7b91b58 100644 --- a/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp +++ b/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp @@ -106,7 +106,7 @@ public: ::AVFrame *frame; ::AVPacket packet; - char *outputBufferPos = NULL; + char *outputBufferPos; int outputBufferSize; int packetSize; bool isSpacious; @@ -118,6 +118,7 @@ K3bFFMpegFile::K3bFFMpegFile(const TQString &filename) : m_filename(filename) { d->codec = NULL; d->audio_stream = NULL; d->frame = av_frame_alloc(); + d->outputBufferPos = NULL; } K3bFFMpegFile::~K3bFFMpegFile() { |