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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
|
/**
*
* Lame ACM wrapper, encode/decode MP3 based RIFF/AVI files in MS Windows
*
* Copyright (c) 2002 Steve Lhomme <steve.lhomme at free.fr>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
/*!
\author Steve Lhomme
\version \$Id: main.cpp,v 1.5 2006/12/25 21:37:34 robert Exp $
*/
#if !defined(STRICT)
#define STRICT
#endif // STRICT
#include <windows.h>
/// The ACM is considered as a driver and run in Kernel-Mode
/// So the new/delete operators have to be overriden in order to use memory
/// readable out of the calling process
void * operator new( unsigned int cb )
{
return LocalAlloc(LPTR, cb); // VirtualAlloc
}
void operator delete(void *block) {
LocalFree(block);
}
extern "C" {
void *acm_Calloc( size_t num, size_t size )
{
return LocalAlloc(LPTR, num * size); // VirtualAlloc
}
void *acm_Malloc( size_t size )
{
return LocalAlloc(LPTR, size); // VirtualAlloc
}
void acm_Free( void * mem)
{
LocalFree(mem);
}
};
////// End of memory instrumentation
#include <mmreg.h>
#include <msacm.h>
#include <msacmdrv.h>
#include <assert.h>
#include "AEncodeProperties.h"
#include "ACM.h"
#include "resource.h"
#include "adebug.h"
ADbg * debug = NULL;
LONG WINAPI DriverProc(DWORD dwDriverId, HDRVR hdrvr, UINT msg, LONG lParam1, LONG lParam2)
{
switch (msg)
{
case DRV_OPEN: // acmDriverOpen
{
if (debug == NULL) {
debug = new ADbg(DEBUG_LEVEL_CREATION);
debug->setPrefix("LAMEdrv");
}
if (debug != NULL)
{
// Sent when the driver is opened.
if (lParam2 != NULL)
debug->OutPut(DEBUG_LEVEL_MSG, "DRV_OPEN (ID 0x%08X), pDesc = 0x%08X",dwDriverId,lParam2);
else
debug->OutPut(DEBUG_LEVEL_MSG, "DRV_OPEN (ID 0x%08X), pDesc = NULL",dwDriverId);
}
if (lParam2 != NULL) {
LPACMDRVOPENDESC pDesc = (LPACMDRVOPENDESC)lParam2;
if (pDesc->fccType != ACMDRIVERDETAILS_FCCTYPE_AUDIOCODEC) {
if (debug != NULL)
{
debug->OutPut(DEBUG_LEVEL_FUNC_CODE, "wrong pDesc->fccType (0x%08X)",pDesc->fccType);
}
return NULL;
}
} else {
if (debug != NULL)
{
debug->OutPut(DEBUG_LEVEL_FUNC_CODE, "pDesc == NULL");
}
}
ACM * ThisACM = new ACM(GetDriverModuleHandle(hdrvr));
if (debug != NULL)
{
debug->OutPut(DEBUG_LEVEL_FUNC_CODE, "OPENED instance 0x%08X",ThisACM);
}
return (LONG)ThisACM;// returns 0L to fail
// value subsequently used
// for dwDriverId.
}
break;
case DRV_CLOSE: // acmDriverClose
{
if (debug != NULL)
{
// Sent when the driver is closed. Drivers are
// unloaded when the open count reaches zero.
debug->OutPut(DEBUG_LEVEL_MSG, "DRV_CLOSE");
}
ACM * ThisACM = (ACM *)dwDriverId;
delete ThisACM;
if (debug != NULL)
{
debug->OutPut(DEBUG_LEVEL_FUNC_CODE, "CLOSED instance 0x%08X",ThisACM);
delete debug;
debug = NULL;
}
return 1L; // returns 0L to fail
}
break;
case DRV_LOAD:
{
// nothing to do
if (debug != NULL)
{
// debug->OutPut(DEBUG_LEVEL_MSG, "DRV_LOAD, version %s %s %s", ACM_VERSION, __DATE__, __TIME__);
debug->OutPut(DEBUG_LEVEL_MSG, "DRV_LOAD, %s %s", __DATE__, __TIME__);
}
return 1L;
}
break;
case DRV_ENABLE:
{
// nothing to do
if (debug != NULL)
{
debug->OutPut(DEBUG_LEVEL_MSG, "DRV_ENABLE");
}
return 1L;
}
break;
case DRV_DISABLE:
{
// nothing to do
if (debug != NULL)
{
debug->OutPut(DEBUG_LEVEL_MSG, "DRV_DISABLE");
}
return 1L;
}
break;
case DRV_FREE:
{
if (debug != NULL)
{
debug->OutPut(DEBUG_LEVEL_MSG, "DRV_FREE");
}
return 1L;
}
break;
default:
{
ACM * ThisACM = (ACM *)dwDriverId;
if (ThisACM != NULL)
return ThisACM->DriverProcedure(hdrvr, msg, lParam1, lParam2);
else
{
if (debug != NULL)
{
debug->OutPut(DEBUG_LEVEL_MSG, "Driver not opened, unknown message (0x%08X), lParam1 = 0x%08X, lParam2 = 0x%08X", msg, lParam1, lParam2);
}
return DefDriverProc (dwDriverId, hdrvr, msg, lParam1, lParam2);
}
}
break;
}
}
|