Skip to content
Snippets Groups Projects
Commit 3bae33e0 authored by Xiang Li's avatar Xiang Li
Browse files

Merge branch 'fix_759' into 'master'

Fix for #759: remove unused Bitstream parameter from xWriteSEIpayloadData()

See merge request jvet/VVCSoftware_VTM!1396
parents de732a05 4d01be38
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
//! \ingroup EncoderLib //! \ingroup EncoderLib
//! \{ //! \{
void SEIWriter::xWriteSEIpayloadData(OutputBitstream& bs, const SEI& sei, const SPS *sps, HRD &hrd, const uint32_t temporalId) void SEIWriter::xWriteSEIpayloadData(const SEI& sei, const SPS *sps, HRD &hrd, const uint32_t temporalId)
{ {
const SEIBufferingPeriod *bp = NULL; const SEIBufferingPeriod *bp = NULL;
switch (sei.payloadType()) switch (sei.payloadType())
...@@ -151,7 +151,7 @@ void SEIWriter::writeSEImessages(OutputBitstream& bs, const SEIMessages &seiList ...@@ -151,7 +151,7 @@ void SEIWriter::writeSEImessages(OutputBitstream& bs, const SEIMessages &seiList
bool traceEnable = g_HLSTraceEnable; bool traceEnable = g_HLSTraceEnable;
g_HLSTraceEnable = false; g_HLSTraceEnable = false;
#endif #endif
xWriteSEIpayloadData(bs_count, **sei, sps, hrd, temporalId); xWriteSEIpayloadData(**sei, sps, hrd, temporalId);
#if ENABLE_TRACING #if ENABLE_TRACING
g_HLSTraceEnable = traceEnable; g_HLSTraceEnable = traceEnable;
#endif #endif
...@@ -179,7 +179,7 @@ void SEIWriter::writeSEImessages(OutputBitstream& bs, const SEIMessages &seiList ...@@ -179,7 +179,7 @@ void SEIWriter::writeSEImessages(OutputBitstream& bs, const SEIMessages &seiList
xTraceSEIMessageType((*sei)->payloadType()); xTraceSEIMessageType((*sei)->payloadType());
#endif #endif
xWriteSEIpayloadData(bs_count, **sei, sps, hrd, temporalId); xWriteSEIpayloadData(**sei, sps, hrd, temporalId);
} }
if (!isNested) if (!isNested)
{ {
......
...@@ -77,7 +77,7 @@ protected: ...@@ -77,7 +77,7 @@ protected:
void xWriteSEIContentLightLevelInfo(const SEIContentLightLevelInfo& sei); void xWriteSEIContentLightLevelInfo(const SEIContentLightLevelInfo& sei);
void xWriteSEIAmbientViewingEnvironment(const SEIAmbientViewingEnvironment& sei); void xWriteSEIAmbientViewingEnvironment(const SEIAmbientViewingEnvironment& sei);
void xWriteSEIContentColourVolume(const SEIContentColourVolume &sei); void xWriteSEIContentColourVolume(const SEIContentColourVolume &sei);
void xWriteSEIpayloadData(OutputBitstream& bs, const SEI& sei, const SPS *sps, HRD &hrd, const uint32_t temporalId); void xWriteSEIpayloadData(const SEI& sei, const SPS *sps, HRD &hrd, const uint32_t temporalId);
void xWriteByteAlign(); void xWriteByteAlign();
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment