1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
/*
** MPEG4IP plugin for FAAD2
** Copyright (C) 2003 Bill May wmay@cisco.com
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
**
** $Id: aa_file.cpp,v 1.2 2004/01/05 14:05:12 menno Exp $
**/
/*
* aa_file.cpp - create media structure for aac files
*/
#include "faad2.h"
codec_data_t *aac_file_check (lib_message_func_t message,
const char *name,
double *max,
char *desc[4]
#ifdef HAVE_PLUGIN_VERSION_0_8
, CConfigSet *pConfig
#endif
)
{
aac_codec_t *aac;
int len = strlen(name);
if (strcasecmp(name + len - 4, ".aac") != 0) {
return (NULL);
}
aac = MALLOC_STRUCTURE(aac_codec_t);
memset(aac, 0, sizeof(*aac));
*max = 0;
aac->m_buffer = (uint8_t *)malloc(MAX_READ_BUFFER);
aac->m_buffer_size_max = MAX_READ_BUFFER;
aac->m_ifile = fopen(name, FOPEN_READ_BINARY);
if (aac->m_ifile == NULL) {
free(aac);
return NULL;
}
aac->m_output_frame_size = 1024;
aac->m_info = faacDecOpen(); // use defaults here...
aac->m_buffer_size = fread(aac->m_buffer,
1,
aac->m_buffer_size_max,
aac->m_ifile);
unsigned long freq;
unsigned char chans;
faacDecInit(aac->m_info, (unsigned char *)aac->m_buffer,
aac->m_buffer_size, &freq, &chans);
// may want to actually decode the first frame...
if (freq == 0) {
message(LOG_ERR, aaclib, "Couldn't determine AAC frame rate");
aac_close((codec_data_t *)aac);
return (NULL);
}
aac->m_freq = freq;
aac->m_chans = chans;
aac->m_faad_inited = 1;
aac->m_framecount = 0;
return ((codec_data_t *)aac);
}
int aac_file_next_frame (codec_data_t *your,
uint8_t **buffer,
uint64_t *ts)
{
aac_codec_t *aac = (aac_codec_t *)your;
if (aac->m_buffer_on > 0) {
memmove(aac->m_buffer,
&aac->m_buffer[aac->m_buffer_on],
aac->m_buffer_size - aac->m_buffer_on);
}
aac->m_buffer_size -= aac->m_buffer_on;
aac->m_buffer_size += fread(aac->m_buffer + aac->m_buffer_size,
1,
aac->m_buffer_size_max - aac->m_buffer_size,
aac->m_ifile);
aac->m_buffer_on = 0;
if (aac->m_buffer_size == 0) return 0;
uint64_t calc;
calc = aac->m_framecount * 1024 * M_LLU;
calc /= aac->m_freq;
*ts = calc;
*buffer = aac->m_buffer;
aac->m_framecount++;
return (aac->m_buffer_size);
}
void aac_file_used_for_frame (codec_data_t *ifptr,
uint32_t bytes)
{
aac_codec_t *aac = (aac_codec_t *)ifptr;
aac->m_buffer_on += bytes;
if (aac->m_buffer_on > aac->m_buffer_size) aac->m_buffer_on = aac->m_buffer_size;
}
int aac_file_eof (codec_data_t *ifptr)
{
aac_codec_t *aac = (aac_codec_t *)ifptr;
return aac->m_buffer_on == aac->m_buffer_size && feof(aac->m_ifile);
}
int aac_raw_file_seek_to (codec_data_t *ifptr, uint64_t ts)
{
if (ts != 0) return -1;
aac_codec_t *aac = (aac_codec_t *)ifptr;
rewind(aac->m_ifile);
aac->m_buffer_size = aac->m_buffer_on = 0;
aac->m_framecount = 0;
return 0;
}
|