On Saturday 08 August 2020 15:23:36 Pali Rohár wrote: > Hello! I would like to remind also this patch: PING > On Tuesday 12 May 2020 18:51:12 Pali Rohár wrote: > > --- > > tools/avinfo.c | 27 ++++++++++++++++++++++++--- > > 1 file changed, 24 insertions(+), 3 deletions(-) > > > > diff --git a/tools/avinfo.c b/tools/avinfo.c > > index e45b50918..576981a5e 100644 > > --- a/tools/avinfo.c > > +++ b/tools/avinfo.c > > @@ -65,6 +65,7 @@ > > #define AVDTP_HEADER_COMPRESSION 0x05 > > #define AVDTP_MULTIPLEXING 0x06 > > #define AVDTP_MEDIA_CODEC 0x07 > > +#define AVDTP_DELAY_REPORTING 0x08 > > > > /* SEP types definitions */ > > #define AVDTP_SEP_TYPE_SOURCE 0x00 > > @@ -696,13 +697,33 @@ static void print_caps(void *data, int size) > > > > switch (cap->category) { > > case AVDTP_MEDIA_TRANSPORT: > > + printf("\tMedia Transport: Supported\n"); > > + break; > > case AVDTP_REPORTING: > > + printf("\tReporting: Supported\n"); > > + break; > > + case AVDTP_DELAY_REPORTING: > > + printf("\tDelay Reporting: Supported\n"); > > + break; > > case AVDTP_RECOVERY: > > + case AVDTP_HEADER_COMPRESSION: > > case AVDTP_MULTIPLEXING: > > - /* FIXME: Add proper functions */ > > - break; > > default: > > - printf("\tUnknown category: %d\n", cap->category); > > + switch (cap->category) { > > + case AVDTP_RECOVERY: > > + printf("\tRecovery:\n"); > > + break; > > + case AVDTP_HEADER_COMPRESSION: > > + printf("\tHeader compression:\n"); > > + break; > > + case AVDTP_MULTIPLEXING: > > + printf("\tMultiplexing:\n"); > > + break; > > + default: > > + printf("\tUnknown category: %d\n", cap->category); > > + break; > > + } > > + /* FIXME: Add proper functions */ > > printf("\t\tData:"); > > for (i = 0; i < cap->length; ++i) > > printf(" 0x%.02x", > > -- > > 2.20.1 > >