| bio | website | withoutsupervision.com |
|---|---|---|
| location | Northern Virginia, USA | |
| age | 54 | |
| visits | member for | 1 year, 4 months |
| seen | May 9 at 19:51 | |
| stats | profile views | 38 |
I'm a life-long programmer trying to improve my Java. I have written programs in C++, C, VisualBasic, Pascal, FORTRAN, APL, BASIC, and more assemblers than I care to admit. I was pleased to discover that I am not alone in my distress over the lack of an unsigned byte in Java, but no language is perfect.
|
Apr 10 |
comment |
tagging Interfaces? Is it? Seems to me that extending a tagging interface can provide type-checking at compile-time for methods that only accept objects whose type is an extension of the tagging interface. Look at EventListenerList.add, for example. |
|
Feb 21 |
comment |
Alter a table column with auto increment by 1 in derby This has no effect when I try it (though I don't know to drop a column; can you explain that please?) |
|
Jan 20 |
awarded | Yearling |
|
Jan 4 |
answered | Vertically maximizing window in Swing |
|
Jan 4 |
comment |
Vertically maximizing window in Swing Good of you to offer an example program, but I doubt many of us are going to run an executable without seeing and compiling the source ourselves. |
|
Jul 6 |
comment |
How to Make NetBeans Navigator Go to Java Constructor Source Heh. You guys are right. It's working now, after a restart. Utterly baffling. |
|
Jul 6 |
asked | How to Make NetBeans Navigator Go to Java Constructor Source |
|
Jun 5 |
comment |
Using callback function in a directshow filter cause memory leaks Sorry, brother. I'm out of ideas. |
|
Jun 4 |
comment |
Using callback function in a directshow filter cause memory leaks Then I go back to recommending that you take out the queue call in DoBufferProcessingLoop. |
|
Jun 2 |
comment |
Using callback function in a directshow filter cause memory leaks Then it is that malloc call. You only call it once in DVRStreamThread, but if you are creating that thread more than once you are calling malloc each time you do it. |
|
Jun 1 |
comment |
Using callback function in a directshow filter cause memory leaks What is "PinetronStreamThread"? |
|
Jun 1 |
comment |
Using callback function in a directshow filter cause memory leaks Man, you got a tough one. Okay, you've trimmed down your filter to almost nothing, with a stub for FillBuffer and for your OnNewImage callback. One thing I notice is that the call signature for OnNewImage is different in your console program from what it is in your filter code. Why is that? The only difference of any significance I can see in your code that still runs repeatedly is the call to IncomingFramesQueue.WaitUntilHaveElements() in your DoBufferProcessingLoop. I know you said you disabled the queue code, but can you take that call out entirely? |
|
Jun 1 |
comment |
Using callback function in a directshow filter cause memory leaks One-time allocation won't grow over time, that's true. But, I just noticed in your short version of FillBuffer that you call pSample->Release(), which is also called in your long version. FillBuffer shouldn't release the IMediaSample. DoBufferProcessingLoop is going to need it after FillBuffer returns, to pass it to Deliver. Your DoBufferProcessingLoop correctly releases it after Deliver returns. So, you are releasing it twice. Maybe that is messing up IMemAllocator's management of the buffer pool. Take the pSample->Release() out of FillBuffer and see if that helps. |
|
Jun 1 |
accepted | Does _ReadWriteBarrier Ensure Visibility of Dynamically Allocated Buffers Across Threads? |
|
Jun 1 |
comment |
Does _ReadWriteBarrier Ensure Visibility of Dynamically Allocated Buffers Across Threads? Ah, found it! It's a bit oblique, but it is on MSDN. stackoverflow.com is kind of amazing, sometimes. Found it by searching for a related question which I found here. I wish they'd be a little more explicit about dynamically allocated space, though... Anyway, thanks! Marking your answer as accepted. |
|
Jun 1 |
comment |
Does _ReadWriteBarrier Ensure Visibility of Dynamically Allocated Buffers Across Threads? That's great info! Can you point me to some doc that confirms it? I've been digging and digging in the MSDN pages on this and can't find anything on it, other than the barrier calls themselves. Remarkably, Microsoft's closest example (see here) doesn't show the actual access to memory, so I am wondering if it even has to be global (as would seem to be required here. |
|
Jun 1 |
asked | Does _ReadWriteBarrier Ensure Visibility of Dynamically Allocated Buffers Across Threads? |
|
May 31 |
comment |
Preview issues for 1080P video using DirectShow No, that's pretty puzzling. What else is going on in your application? Do you see this kind of CPU consumption if you build a graph with the filters you mentioned in graphedt.exe? |
|
May 31 |
comment |
Preview issues for 1080P video using DirectShow With my Logitechs, the only way I know to affect the frame rate is to change the resolution and exposure settings. The camera makes its own decision about what rate it's going to use. I'm not sure, but I think the average rate in the VIDEOINFO structure is something your source filter sets to advise other filters about the rate they should anticipate. It doesn't change the source filter's own rate; it helps other filters know what to expect. Your camera is going to pump out samples at whatever rate it wants. See msdn.microsoft.com/en-us/library/windows/desktop/… |
|
May 31 |
answered | Using callback function in a directshow filter cause memory leaks |