diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2014-02-02 08:12:29 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2014-02-02 08:12:29 +0000 |
| commit | ba185860cee73a919231d46e9271c0837572de6a (patch) | |
| tree | 976fb63634d963f329f1cb6d01259bfb080a97f9 /src/plugins/Input/ffmpeg | |
| parent | 177ac2d748a81c97d43c5a856a3d42d5a844e61f (diff) | |
| download | qmmp-ba185860cee73a919231d46e9271c0837572de6a.tar.gz qmmp-ba185860cee73a919231d46e9271c0837572de6a.tar.bz2 qmmp-ba185860cee73a919231d46e9271c0837572de6a.zip | |
fixed clang warnings
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@4056 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/ffmpeg')
| -rw-r--r-- | src/plugins/Input/ffmpeg/decoder_ffmpeg.cpp | 2 | ||||
| -rw-r--r-- | src/plugins/Input/ffmpeg/decoder_ffmpeg.h | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/Input/ffmpeg/decoder_ffmpeg.cpp b/src/plugins/Input/ffmpeg/decoder_ffmpeg.cpp index 504d1e980..a2596353a 100644 --- a/src/plugins/Input/ffmpeg/decoder_ffmpeg.cpp +++ b/src/plugins/Input/ffmpeg/decoder_ffmpeg.cpp @@ -328,7 +328,7 @@ qint64 DecoderFFmpeg::ffmpeg_decode() { int out_size = 0; int got_frame = 0; - if((m_pkt.stream_index == wma_idx)) + if(m_pkt.stream_index == wma_idx) { avcodec_get_frame_defaults(m_decoded_frame); diff --git a/src/plugins/Input/ffmpeg/decoder_ffmpeg.h b/src/plugins/Input/ffmpeg/decoder_ffmpeg.h index 80df13c96..39724ecb4 100644 --- a/src/plugins/Input/ffmpeg/decoder_ffmpeg.h +++ b/src/plugins/Input/ffmpeg/decoder_ffmpeg.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2006-2013 by Ilya Kotov * + * Copyright (C) 2006-2014 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -54,7 +54,6 @@ private: AVFormatContext *ic; AVCodecContext *c; - uint wma_st_buff, wma_idx2; int m_bitrate, wma_idx; QString m_path; |
