File: rem_aac.h

package info (click to toggle)
rem 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 540 kB
  • sloc: ansic: 4,618; makefile: 142; python: 19; sh: 1
file content (15 lines) | stat: -rw-r--r-- 402 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * @file rem_aac.h Advanced Audio Coding
 *
 * Copyright (C) 2010 Creytiv.com
 */


/** Defines the AAC header */
struct aac_header {
	unsigned sample_rate;  /**< Audio sample rate in [Hz]    */
	unsigned channels;     /**< Number of audio channels     */
	unsigned frame_size;   /**< Frame size, 960 or 1024 bits */
};

int aac_header_decode(struct aac_header *hdr, const uint8_t *p, size_t len);