Displaying 3 results from an estimated 3 matches for "statesize".
Did you mean:
stateside
2006 Dec 13
2
Would be nice to conditionally compile out coding modes and code tables...
...e for anyone who's
interested.
Also, I've removed the dynamic memory allocation of the encoder and
decoder. To do this I had to determine the required size of the encoder
and decoder states since i'm working on a fixed memory platform I simply
handle the worst case, see the attached statesize.h. Now I can do this
sort of thing...
MyDecoderClass decoders[5];
.. will means all of my decoder states are contiguous and quick to DMA.
It also improves cache consistency when the input buffers are placed in
MyDecoderClass.
Would be nice for functionality like this to make it into the main l...
2007 Feb 20
0
Fwd: Fwd: HOW to enable traceroute with IPTABLES(SLOVED)
Hi all,
That issue is over now. I found why my ESTABLISHED,RELATED rule at the top
of INPUT chain did not work for udp and icmp.
The reason was I have included the protocol as tcp as below
iptables -A INPUT -i eth0 -p tcp -m state --state ESTABLISHED,RELATED -j
ACCEPT
I removed -p tcp from above rule. Now it works for all protocols.
Thanks for your support.
---------- Forwarded message
2006 Dec 14
1
Would be nice to conditionally compile out coding modes and code tables...
...Also, I've removed the dynamic memory allocation of the encoder and
> > decoder. To do this I had to determine the required size of the
> > encoder and decoder states since i'm working on a fixed
> memory platform I simply
> > handle the worst case, see the attached statesize.h. Now
> I can do this
> > sort of thing...
> >
> > MyDecoderClass decoders[5];
> >
> > .. will means all of my decoder states are contiguous and
> quick to DMA.
> > It also improves cache consistency when the input buffers
> are placed
> >...