Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2016-03-17 15:57:17 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2016-03-17 15:57:17 +0300
commite10f5b350ef48ddbf35035c70e0281268e4f96d3 (patch)
tree56c9be7e24e328c0f6d6665e2138a4460ffa6987 /decoder
parent425b9d9e55c3364b73d47a5f09ea07d5a3c6a3f1 (diff)
Remove unused variables
Diffstat (limited to 'decoder')
-rw-r--r--decoder/LAVAudio/LAVAudio.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/decoder/LAVAudio/LAVAudio.cpp b/decoder/LAVAudio/LAVAudio.cpp
index b1486a74..55f71928 100644
--- a/decoder/LAVAudio/LAVAudio.cpp
+++ b/decoder/LAVAudio/LAVAudio.cpp
@@ -1770,8 +1770,6 @@ HRESULT CLAVAudio::ProcessBuffer(BOOL bEOF)
int buffer_size = m_buff.GetCount();
BYTE *p = m_buff.Ptr();
- BYTE *base = p;
- BYTE *end = p + buffer_size;
int consumed = 0;
@@ -1829,8 +1827,6 @@ HRESULT CLAVAudio::ProcessBuffer(BOOL bEOF)
// SPDIF is apparently big-endian coded
lav_spdif_bswap_buf16((uint16_t *)p, (uint16_t *)p, buffer_size >> 1);
-
- end = p + buffer_size;
}
}