Skip to content
Snippets Groups Projects
Commit e229045c authored by Kipp Cannon's avatar Kipp Cannon
Browse files

framecpp_channeldemux:

- fix a namespace problem in the full-file CRC code.  g++ 4.4 does not
  complain about it, but code is uncompilable with g++ 4.6 without this
  patch.
parent f77ea81d
No related branches found
No related tags found
No related merge requests found
...@@ -563,7 +563,7 @@ static GstFlowReturn chain(GstPad *pad, GstBuffer *inbuf) ...@@ -563,7 +563,7 @@ static GstFlowReturn chain(GstPad *pad, GstBuffer *inbuf)
IFrameStream ifs(ibuf); IFrameStream ifs(ibuf);
Common::Verify::Verify verifier; Common::Verify verifier;
verifier.BufferSize(GST_BUFFER_SIZE(inbuf)); verifier.BufferSize(GST_BUFFER_SIZE(inbuf));
verifier.UseMemoryMappedIO(false); verifier.UseMemoryMappedIO(false);
......
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