Alejandro Acuña
2025-04-29 d1d736e487d9eb104dcae9def948066037afd2f0
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
// AudioCodec.cpp: implementation of the AudioCodec class.
//
//////////////////////////////////////////////////////////////////////
 
#include "AudioCodec.h"
#include <windows.h>
 
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
 
AudioCodec::AudioCodec()
{
 
}
 
AudioCodec::~AudioCodec()
{
 
}
 
int
AudioCodec::Encode(void *input, int inputSizeBytes, void *output, int *outputSizeBytes)
{
    OutputDebugString("AudioCodec::Encode : ERROR : pure virtual function call !!!\n");
    return 0;
}
 
int
AudioCodec::Decode(void *input, int inputSizeBytes, void *output, int *outputSizeBytes)
{
    OutputDebugString("AudioCodec::Decode : ERROR : pure virtual function call !!!\n");
    return 0;
}
 
int
AudioCodec::StartEncoder()
{
    return 0;
}
 
int
AudioCodec::StartDecoder()
{
    return 0;
}
 
int
AudioCodec::StopEncoder()
{
    return 0;
}
 
int
AudioCodec::StopDecoder()
{
    return 0;
}