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

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2011-08-05 20:26:10 +0400
committerUnderground78 <underground78@users.sourceforge.net>2011-08-05 20:26:10 +0400
commite4afbb49dc1ed0d5334c0893d3989724b0cbc0a3 (patch)
tree2263e910c326ab4707dda865354f5eb39a8a7ef2 /src/DSUtil/H264Nalu.cpp
parent29566f17ad7765fa32234c9a59beb0f9d53dbf6a (diff)
Fix some cppcheck constructor warnings, patch by Tetsuo55.
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@3581 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/DSUtil/H264Nalu.cpp')
-rw-r--r--src/DSUtil/H264Nalu.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/DSUtil/H264Nalu.cpp b/src/DSUtil/H264Nalu.cpp
index 3799689af..620b292d2 100644
--- a/src/DSUtil/H264Nalu.cpp
+++ b/src/DSUtil/H264Nalu.cpp
@@ -23,6 +23,11 @@
#include "stdafx.h"
#include "H264Nalu.h"
+CH264Nalu::CH264Nalu()
+{
+ // Explicit default constructor to make cppcheck happy.
+}
+
void CH264Nalu::SetBuffer(BYTE* pBuffer, int nSize, int nNALSize)
{
m_pBuffer = pBuffer;