Searched refs:jpeg_header (Results 1 – 1 of 1) sorted by relevance
3096 UCHAR jpeg_header[8]; in _nx_rtp_sender_session_jpeg_send() local3368 jpeg_header[0] = 0; /* Always 0 since no interpretation is specified. */ in _nx_rtp_sender_session_jpeg_send()3369 jpeg_header[1] = 0; /* High byte of 24 bytes size offset. */ in _nx_rtp_sender_session_jpeg_send()3370 jpeg_header[2] = 0; /* Middle byte 24 bytes size offset. */ in _nx_rtp_sender_session_jpeg_send()3371 jpeg_header[3] = 0; /* Low byte of 24 bytes size offset. */ in _nx_rtp_sender_session_jpeg_send()3372 jpeg_header[4] = type; in _nx_rtp_sender_session_jpeg_send()3373 …jpeg_header[5] = 255; /* Q values 255 indicates the quantization table header appears after the ma… in _nx_rtp_sender_session_jpeg_send()3375 jpeg_header[6] = (UCHAR)(width >> 3); /* Maximum width: 2040 pixels. */ in _nx_rtp_sender_session_jpeg_send()3376 jpeg_header[7] = (UCHAR)(height >> 3); /* Maximum height: 2040 pixels. */ in _nx_rtp_sender_session_jpeg_send()3378 status = nx_packet_data_append(send_packet, (void *)jpeg_header, sizeof(jpeg_header), in _nx_rtp_sender_session_jpeg_send()[all …]