Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Using srd.SRD_OUTPUT_ANN is unneeded, srd.OUTPUT_ANN is better/shorter.
|
|
If those variables are used before start() was called, that's a bug anyway.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
While 'data' is of type 'bytes', 'data[0]' for example is of type 'int',
thus the ord() there is neither needed nor correct anymore (yields an error).
|
|
Since Python 3 there are some explicit int() casts needed.
|
|
|
|
|
|
|
|
|
|
|
|
Before this was passed to the decoder's constuctor, but the parameters
may not all be known at construction. Decoders now have a method start()
which is called at the start of the capture, and metadata is passed as
an arg to this function.
|
|
|
|
|
|
There is currently no way to configure options or probes, so they'll
always be the same, but it's a start.
|
|
|
|
|
|
|