view libgsmhr1/twts002_out.c @ 561:cf62fe9fac3a

gsmhr-cod2hex: read native endian by default Let's change gsmhr-* utilities to read *.cod and *.dec files in the local machine's native byte order by default, and support both -b and -l override options. This approach is the only sane one when we write *.cod and *.dec files in the local endian.
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 12 Feb 2025 00:04:33 +0000
parents dc7249923b3a
children
line wrap: on
line source

/*
 * The function implemented in this module converts the output of HRv1
 * speech encoder into an RTP payload per TW-TS-002, which in this
 * particular case is also a valid RFC 5993 payload.
 */

#include <stdint.h>
#include "tw_gsmhr.h"

void gsmhr_encoder_twts002_out(const int16_t *params, uint8_t *payload)
{
	payload[0] = params[19] ? 0x00 : 0x20;
	gsmhr_pack_ts101318(params, payload + 1);
}