Sunday, August 2, 2009

Why do I get compiler errors when I type: "vlt = sin*(2*pi*freq * time);"?

I am programming using C++, using Microsoft Visual Studio 2005.


here are the errors:


j:\hw2\hw2a-ssabdelm.cpp(23) : error C2143: syntax error : missing ')' before ';'


j:\hw2\hw2a-ssabdelm.cpp(23) : error C2563: mismatch in formal parameter list


j:\hw2\hw2a-ssabdelm.cpp(23) : error C2100: illegal indirection


j:\hw2\hw2a-ssabdelm.cpp(23) : error C2059: syntax error : ')'


j:\hw2\hw2a-ssabdelm.cpp(23) : warning C4552: '*' : operator has no effect; expected operator with side-effect


Build log was saved at "file://c:\Documents and Settings\Sam %26amp; Jacqueline\My Documents\Visual Studio 2005\Projects\hw2-ssabdelm\hw2-ssabdelm\...


hw2-ssabdelm - 4 error(s), 1 warning(s)


========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Why do I get compiler errors when I type: "vlt = sin*(2*pi*freq * time);"?
Take out the *





vlt = sin(2*pi*freq*time);





And remove the semicolon from your #define for pi (which should be upper case anyway):





#define PI 3.14
Reply:sin is a math function which has the following prototype:





double sin(double x);





so as an obvious syntax error its easy to see you are incorrectly adding in a '*' between sin and its parameter.





The line should have the '*' after the sin function removed in order for the parameter to be properly accepted.





vlt = sin(2*pi*freq*time);





Hope that helps.





--------------------------------------...





You still have a problem now that you've paste the code with your preprocessor define





eg: #define pi 3.14;


used with : vlt = sin*(2*pi*freq * time);


becomes : vlt = sin*(2*3.14;*freq * time);





The semi-colon will cause a syntax error, therefore the define should not have it in there eg





#define pi 3.14





is all you need.
Reply:I think you need to write sin(x), not sin*(x).
Reply:syntax error: there should be no * between sin and bracket. I t should be vlt = sin(2*pi*freq * time);
Reply:Take out the ; from in front fo the " and put it behind it.
Reply:Well I assume you are intending to use the Sine function...





your line should read vlt = sin(2*pi*freq*time);





- you have a star (*) between sin and the opening parenthesis which I believe is causing at least some of your problems..





You may also want to make sure the other terms in your expression are correctly defined and watch out for the 2.. it will be interpreted as an integer which may cause the other terms to be truncated to integers I.E. It becomes sin( 2 * 3 * freq * time ) which I'm fairly sure is not what you want.








Hope this helps.

garden ridge

Multiple c++ files?

i have 3 cpp, file1.cpp, file2.cpp, file3.cpp


file1.cpp: base class


file2.cpp: derived class of file1


file3.cpp: main()





in file2.cpp, i did # include "file1.cpp", but i gt and error, LNK2005





How do i include additional cpp files?

Multiple c++ files?
Thats not right, you have to use the header files so if you wanted to include file1.cpp into your file2.cpp and file2.cpp into file3.cpp


you have to do this:





in file2.cpp


#include "file1.h"





in file 3


#include "file2.h"





This mean you have to create file1.h and file2.h. if you just change the names of those, it still wont work.





Look up on google how to create header files in C++
Reply:You can't assemble source files with #include (that's for headers), you need to add all cpp (c,c++ source) files to the project (in Dev for example, you'd right click on project inside the project window, add file -- when creating a new project, you also need to remove the auto-generated main file).





Hope that helps...
Reply:do not include file1.cpp rather move class definition in file1.h and include file1.h
Reply:The most proper way to #include also have #ifdef #define peppered within them.





and that custom .cpp .h files use "" not angle brackets for inclusion.
Reply:What are you using to compile and build? Are you using an IDE like VC++ or g++?





If you are using an IDE, just add all the .cpp and .h files to the project. You don't #include other .cpp files, you include their headers .h files. The header file contains all the declarations a .cpp might need to build.





If you use g++ just put all the files on the command line as options





%26gt; g++ -o myprog file1.cpp file2.cpp file3.cpp


I want to learn visual c++.pls send me the websites which would help me in learning it.?

friends,i want to learn visual cpp.pls send the links associated with it,so that i can understand visual cpp more effectively.

I want to learn visual c++.pls send me the websites which would help me in learning it.?
i want to learn visual c++.pls send me the websites which would help me in learning it.?


Convert exe file to the coding?

is there any way that i can convert my .exe files to .c or .cpp files.....


i have just now learned c and c++ and sometimes think of how can i convert .exe files to .c or .cpp files in case of i delete my coding files

Convert exe file to the coding?
You can sort of do this, but it's messy. Things like variable and file names are removed from compiled programs, if you get a disassembler you will probably get 1 huge file containing everything, with variable names like int1, int2, etc... It will be almost impossible to make sense of the code, and it won't optimize it to make it human readable, in many cases you'll get big long ugly lines of confusing code.
Reply:use a decompiler. google it out as i have never used it :P


I'm creating a C++ program using mainly dialogs, and I want to make a global struct so that all files can use.

For example


Dlg1.cpp has


struct blah {


int x;


};





and I need Dlg2.cpp to access that struct but I can't get it to work. Any help?

I'm creating a C++ program using mainly dialogs, and I want to make a global struct so that all files can use.
Here's the tried-and-true way to do it in C. There may be a more C++-like technique.





(1) Create a header file, such as blah.h, and put this in the header:





extern struct blah {


int x;


}





(2) Include that header in both Dlg1.cpp and Dlg2.cpp.





(3) Retain the existing definition of blah (without the extern) in Dlg1.cpp.

flowers for algernon

Simple unit test problem?

I cant figure this out, I got it wrong on a assignment I wont get credit for it now but its driving me crazy can you figure this out?





1) Look at the implementation of RemoveWhitespace





2) Implement unit tests in individual .cpp/.h files under the 'Test/' folder.





3) Edit Test.cpp to execute your set of unit tests. Eg:





#include "Test.h"


#include "RemoveWhitespace.h"





// individual tests


#include "Tests/Example.h"


#include "Tests/EmptyInput.h"





void FullTest( ResultVec%26amp; results )


{


std::string testName;


bool result;





RemovesSpaces( testName, result );


results.push_back( ResultVec::value_type( testName, result ) );





EmptyInput( testName, result );


results.push_back( ResultVec::value_type( testName, result ) );





//...


}





Unit testfunctions should conform to the style:





void TestFunction( std::string%26amp; testName, bool%26amp; result );





Each function should fill out the test name and result so they can


be added to the result vector as shown above.

Simple unit test problem?
I'm not to sure what you would have directly wrong, but a case I would check for would be if the string was all spaces to begin with. Also, a string that has single spaces versus a string with more than one space between characters. A lot of this depends on what kind of input you expect.


C++ help... Due tomorrow.?

I need this program to work by tomorrow morning, but I can't tell that I'm doing anything wrong!!





Errors:


o_assignment5.cpp: In function `int main()':


o_assignment5.cpp:48: non-lvalue in assignment


o_assignment5.cpp:48: parse error before `-' token


o_assignment5.cpp:52: parse error before `)' token


o_assignment5.cpp:54: parse error before `)' token


o_assignment5.cpp: At global scope:


o_assignment5.cpp:61: parse error before `;' token


o_assignment5.cpp:61: syntax error before `++' token


o_assignment5.cpp:63: parse error before `;' token


o_assignment5.cpp:63: syntax error before `++' token


o_assignment5.cpp:66: syntax error before `%26lt;%26lt;' token


o_assignment5.cpp:70: syntax error before `.' token








Code:


#include %26lt;iostream%26gt;


#include %26lt;cstdlib%26gt;


#include %26lt;fstream%26gt;


#include %26lt;iomanip%26gt;


#include %26lt;cmath%26gt;





using namespace std;





const int SIZE = 15;


int colRow[SIZE][SIZE];


int userRow; // what the user of the program inputs for table width


int finalRow;


int userCol;

C++ help... Due tomorrow.?
The userRow - 1 = finalRow is not correct. I think that you mean: finalRow = userRow -1 and finalCol = userCol - 1





Try that it should compile.





But also I don't understand your loop code





the "int finalRow" will override the previously defined "finalRow" for the scope of the loop and likewise for the "int finalCol" loop.





HTH
Reply:userRow - 1 = finalRow


userCol - 1 = finalCol





Switch to


finalRow = userRow - 1


finalCol = userCol - 1
Reply:1. Look at your assignments for userRow and userCol from finalRow and finalCol





2. Your last loop isn't going to do what you intend it to.





Good luck.
Reply:1. You redeclared "outs" inside of main() ...don't do that.





2. Look at the following two lines:


userRow - 1 = finalRow // to get right number in array: rows


userCol - 1 = finalCol // to get right number in array: cols





You must place the variable to which a value is assigned in the LEFT side of the expression, like this: y = x - 1





3. One of your for() loops had a missing closing brace. Use proper indentation to find where this occurred.


Whats going on with my cd/dvd burner!!?

it was working earlier this week but all of a sudden it wont let me burn anything. my cd/dvd burner is a 20x NEXXTECH double layer +-. im currently running on xp and this is the error that i get





VVVVVVVVVVVVVVVVVV





6:30:10 AM #25 CDR -1033 File Writer.cpp, Line 306


Drive not ready


D: ATAPI DVD A LH-1P20A





6:30:16 AM #26 Text 0 File DVDR.cpp, Line 3803


EndDAO: Last written address was -1 (FFFFFFFFh)





6:30:16 AM #27 CDR -1033 File WriterStatus.cpp, Line 162


Drive not ready


D: ATAPI DVD A LH-1P20A





6:30:16 AM #28 TRANSFER -24 File WriterStatus.cpp, Line 162


Could not perform end of Disc-at-once





what the flippin is "Disc-At-Once"??

Whats going on with my cd/dvd burner!!?
try reinstall it the drivers





or





try other burning software





(infrarecorder is a good open source burner (iso, audio, mp3, dvd, data, ...))
Reply:perhaps the drive is physically damaged.( it can be the optical lens ). you shud try first by re-aligning the wires stuck in the dvd writer (means removing and again tucking it).


because the writer was well this week, so perhaps the software is quite right.


next you can use a drive lens cleaner .


maybe you tweaked some settiings in your writer software thats causing the problem -try reverting to old settings .


at last but not the least you could be wriiting at higher speeds that your hard disk doesnt support .
Reply:The burning software to use should be Nero, try nero and uninstall that soft u have now
Reply:disc at once (dao) burn software. try shutdown it should clear it out. dao stutters. but it is the standard. does it play ok?


Is my Canada Tax refund reasonable??

Ive made about 26300 in 2007.tax deducted about 3300.CPP contricutions 1100.EI premiums 473.


and so i went to H%26amp;R online to do my tax..and it calculated that i get back 279 dollars..wud this be reasonable?is it too low??i dont have any of those rrsp stuff..or any other of those things

Is my Canada Tax refund reasonable??
Without knowing your province we cannot give a complete answer. Even the tax cow isn't to be trusted.





It does look reasonable. I wouldn't be expecting to see a huge refund because you don't have any deductions or credits listed.
Reply:This site will tell you how much income taxes should have been deducted from your pay, assuming you get no deductions (dependent children, RRSP, etc)





http://www.ey.com/GLOBAL/content.nsf/Can...





The amount is different for every province, so I can't tell you yes or no right now. But your EI and CPP premiums won't get you a refund, unless you over contributed, which you most likely didn't. So it's just your income taxes that count here.
Reply:Looks reasonable. I just put those numbers in my tax program (for ON) and got a 97.58 balance owing. If you live in another province, it would be a different amount.
Reply:If your employer does your tax calculations properly, you should end up even. Usually large refunds (since you didn't contribute to RRSPs) are due to bookkeeping/accounting errors with your withholding taxes by your employer.





Your $279 refund is due to the tax changes announced last October that were not figured into your withholding taxes.





Your refund is right.
Reply:I have almost the exact figures as yourself and estimated about the same return. I was told by several people though that being an Austrlian (non Canadian), that I should get most of it back. I did have taxable refunds of about $1000 aswell which I should definately get back. I was situated in the BC province, don't how much of a difference it makes. I tried to do the tax myself and was told (by the Canadian Revenue Agency) to fill out a T1 Resident form, Federal Tax form and a BC Province form. I'm trying to find a place that doens't here in Melbourne but its a struggle. Doens anyone know where I can get it done? taxback.com charges to much, not even worth it. Any info on what do to would be much appreciated....?????

business cards

Simple C++ source file and function problem?

I'm trying to create a simple program that prints the word "Hello" to the console. However, I want the program to use two different functions, the first being the main and the second being a void function that prints the word to the console. When I try to compile, it tells me there is an error at second2.h on the line that tries to print to the console (the line with cout). I was wondering what I did wrong.


Here is the code from main.cpp:


--------------------------------------...


include %26lt;cstdlib%26gt;


#include %26lt;iostream%26gt;


#include "second2.h"


using namespace std;





void sayHello();


int main(int argc, char *argv[])


{


sayHello();


system("PAUSE");


return EXIT_SUCCESS;


}


--------------------------------------...


the code from second2.h:


--------------------------------------...


#include %26lt;cstdlib%26gt;


#include %26lt;iostream%26gt;


void sayHello()


{


cout %26lt;%26lt; "Hello" %26lt;%26lt; endl;


}


--------------------------------------...





Thanks.

Simple C++ source file and function problem?
Just a guess:





Try moving the using namespace std; before the #include "second2.h", which, as someone else has pointed out, shouldn't include the sayHello() function definition, just its declaration.





I'm thinking your compiler requires the namespace be already pulled in for cout, which, as your code is currently configured, it isn't when sayHello() is compiled.





Good luck.





By the way, any compiler that just says there's an error on line such-and-such without giving any details should be evicted from your machine..
Reply:It cant compile, first line should be #include... and not include...


you should not declare sayHello in the cpp file it is already included in second2.h


I hope EXIT_SUCCESS is defined I don't use this macro.
Reply:You do have a compiler issue (your exact program compiles with Borland for example with the extra # for include first line) but you should be able to compile this with more rigid code.





Function declarations should be in header files so that other .c files can see them without explicitly extern-ing them.





Function definitions should always be in .c files.





That will suit all compilers.





So second2.h should just have





extern void sayHello();





Ths means there is a single place where the function is extern-ed and made available to other files.





Your main file





void sayHello()


{


cout %26lt;%26lt; "Hello" %26lt;%26lt; endl;


}





int main(int argc, char *argv[])


{


sayHello();


system("PAUSE");


return EXIT_SUCCESS;


}





If no other file requires the sayHello function then it ought to be declared as static in the same file as the function definition.
Reply:--- main.cpp ---


#include %26lt;iostream%26gt;


#include "2nd.h"


int main()


{


hello();


system("PAUSE");


}





--- 2nd.h ---


#include %26lt;iostream%26gt;


using namespace std;


void hello()


{


cout %26lt;%26lt; "Hello World!\n";


}


PC constant crashing problem. Can anyone help?

My pc has, over the last few months has been crashing completely (complete system shutdown and restart after displaying a blue error screen briefly).





This even happens in safe mode. The error message i get upon restart and when i look in the event viewer states it is a system error problem. The error message reads:





DCOM got error "This service cannot be started in Safe Mode " attempting to start the service EventSystem with arguments "" in order to run the server:


{1BE1F766-5536-11D1-B726-00C04FB926AF}





and in Applications (under event viewer) it states these problems:





"Eventsystem"





The COM+ Event System detected a bad return code during its internal processing. HRESULT was 8007043C from line 44 of d:\nt\com\com1x\src\events\tier1\eventsy... Please contact Microsoft Product Support Services to report this error.





and "VSS"





Volume Shadow Copy Service error: Unexpected error calling routine CoCreateInstance. hr = 0x80040206.





Does anyone know the prob?

PC constant crashing problem. Can anyone help?
This issue has been discussed on this forum: http://www.gmforum.org/index.php?topic=3...





It helps.
Reply:Firstly update and run your anti-virus product. You can also run a free online scan as well as some malware can actually corrupt or disable your resident security products. Here are a few online scans you can run:


Trend - http://housecall.trendmicro.com/...


Panda - http://www.pandasoftware.com/products/ac...


Norton - http://security.symantec.com/sscv6/defau...





Second download, update and run scans using the following products:


SuperAntispyware


http://superantispyware.com/


Spybot S%26amp;D (free version requires manual updating)


http://www.safer-networking.org/en/downl...


AVG AntiSpyware


http://free.grisoft.com/doc/20/lng/us/tp...


Adaware from Lavasoft (free version requires automatic updating)


http://www.lavasoftusa.com/products/ad-a...





(These programs can be run in Safe Mode after downloading and updating)





Third, after cleaning your system, disable System Restore, reboot and re-enable System Restore when you log back on. This will clear the malware that may still be lurking in System Restore, which could be reinstalled should you need to rollback at some point. Additionally, a reboot may be required to complete the malware removal process.





Lastly, you may also want to install the following tool. It is free and requires you to check for and enable updates manually once a week or so. It uses no system resources.


SpywareBlaster (inoculates, not a spyware removal tool)


http://www.javacoolsoftware.com/spywareb...


==============================...


If you cannot get it removed after the above, you may want to join a tech group that specializes in providing manual instructions on malware eradication.
Reply:thats bad the only way to fix that is reinstall your windows if your computer has system recovery use it when computer comes on hit f10 to see if it has recovery

birthday cards

For some reason, my compiler is giving me trouble when I put a scanf() statement within any kind of loop.?

I use Dev-Cpp Bloodshed C/C++ compiler. When I try to use the scanf() function in an IF loop, it just seems to bypass the scanf() statement completely. If I use it outside of an IF it works just fine though. Here is the code...








if(ans==1){


printf("you chose number one.");


printf("Please enter your guess: ");


scanf("%c", %26amp;guesslet);


printf("%c", guesslet);


}





...that scanf() wouldn't work. Does anyone know why this is? Thanks a lot.

For some reason, my compiler is giving me trouble when I put a scanf() statement within any kind of loop.?
first, please check if you already include necessary library into your code. %26lt;stdio.h%26gt; are almost compulsary for any C programming but could check if you have %26lt;math.h%26gt; and %26lt;stdlib.h%26gt;.





as per my understanding from this code, i can fore see that you try to read and write input given by user without any other operation involved thus i suggest you to make your code like this:





--------------------------------------...


if(ans==1)


{


printf("you chose number one.");


printf("Please enter your guess: ");


}





elseif(ans==2)


{ .......


}





scanf("%c", %26amp;guesslet);


printf("%c", guesslet);


--------------------------------------...





i think the code work much better this way. hope it's work. :)
Reply:It cannot happen. Post the full code, the problem could be somewhere else
Reply:check to see if you have


#include %26lt;stdio.h%26gt;


in your code


Warcraft iii (reign of terror) initializing/startup issues?

when is start the game, the opening sequence plays fine and after that i get an error message:


Application has encountered a critical error


Not enough storage is available to process this command


Program C:\program files\war 3.exe


File E:\Drive1\Temp\buildWar3loc\STORM\Source...


Line:752

Warcraft iii (reign of terror) initializing/startup issues?
You may find your answer here:


http://www.opentechsupport.net/forums/ar...





Warcraft III Troubleshooting Guide


http://www.opentechsupport.net/forums/ar...


Has this ever happened to you??

How do you make a bat or cpp file into an exe? Do you just save it as an exe (which i doubt) or is there some process?

Has this ever happened to you??
A bat file is already executable. A bat file is a batch file and is actually a script of instructions the OS carries out.





A .cpp file is C++ source code. To make it into an EXE file you will need to compile it with a compiler like Visual C++ or borland C++ complier, depending.


HELP! I have got a C++ code and when I compile I get theses errors?

Line 111 - Unit key.cpp - VK_OEM_4` undeclared (first use this function)





Please tell me what to do??

HELP! I have got a C++ code and when I compile I get theses errors?
You are missing some required header file that you need to #include. Alternatively, you could add the following #defines yourself to your own code so that iut does not need to depend on any other file to get what it means:





===============================


#ifndef VK_OEM_1


#define VK_OEM_1 0xBA


#endif


#ifndef VK_OEM_2


#define VK_OEM_2 0xBF


#endif


#ifndef VK_OEM_3


#define VK_OEM_3 0xC0


#endif


#ifndef VK_OEM_4


#define VK_OEM_4 0xDB


#endif


#ifndef VK_OEM_5


#define VK_OEM_5 0xDC


#endif


#ifndef VK_OEM_6


#define VK_OEM_6 0xDD


#endif


#ifndef VK_OEM_7


#define VK_OEM_7 0xDE


#endif


#ifndef VK_OEM_8


#define VK_OEM_8 0xDF


#endif


===============================





However, this does not guarantee that once this error is gone, you won't get other errors. This solution is for this particluar error, and does not guarantee error-free compilation, if you know what I mean. I mean that if this solves your error, give me 10 points even if you get other errors :-)





UPDATE: Another webpage seems to have an answer as to which exact file you need to #include: looks like adding





#pragma comment(lib, "user32.lib")





or





#include %26lt;Winuser.h%26gt;





might solve your problem. Look here:


http://www.gamerzplanet.net/forums/warcr...
Reply:It means you tried to use a variable you didn't declare yet. Either you forgot to include a header file that declares it (like an external library, for example), or you misspelled the variable's name.
Reply:If that is a copy and past of the error, did you accidentally add a "`" to the end of the variable name. I don't believe that is a normal part of the error.
Reply:#define VK_OEM_4 VK_OEM + 4





... it's a custom variable, or pre-processor macro .. without code or details isn't possible to answer to your question!
Reply:IT looks like there should be a declared value in VK_OEM_4 but there isn't, step threw the code and see it there is a value being place into it.
Reply:Like the others have said the compiler is complaining that VK_OEM_4 is undeclared. VK_OEM_4 does not seem like the name of a variable that you would normally just declare/use yourself, so I did a search and it looks like it is a Windows GUI value. I have not done much with windows programming, but it appears to be a key code value. You can probably find more about it at MSDN.

sepal

Yahoo Autosync Crashing Again?

Once again, Autosync has started crashing. It only happens for calendar syncing. Contacts work fine when I uncheck calendar.


It started Monday I think, and it basically reads the Yahoo info, and then when it starts on the Outlook info, it just shuts down.


Here's the entry I'm getting in the error log.





LOG_TRIVIA 2008:05:13_13:34:53 File: Configuration.cpp (line 12)


Entering XML_GetOptionsAccessInterface


How to clear this error in mfc programming..what is the mistake done?

e:\gokilavani\vp\newmenu\menu.cpp(3) : fatal error C1083: Cannot open include file: 'resource.h': No such file or directory

How to clear this error in mfc programming..what is the mistake done?
That error mean that your project cannot find it's resource.h file. This file is necessary to translate the UI widgets identifiers names to IDs.





It is normally in the folder where your *.dsp file is located. If you can't find it anywhere you are a bit in trouble. You will need to get a "sample" resource.h from a similar (MFC mdi/sdi/dialog) project, and place it in your project. But you will need to either redo your UI to have it register it's widget in your resource.h file, or the other way around: mimic the declaration present in the file to fit the widget names present in your UI.





The first method is more straightforward and easy to get to work, but if that mean a lot of work to start back your UI from scratch you can try the second. Be aware that you risk getting your project in an inconsistent state that way. If that ever happen simply remove the new resource.h file. You'll get back to the current state.





This is a somewhat cumbersome task. Apart from plainly deleting that file, I don't understand how it could happened.





anyway, good luck.


I need help with nero vision 3?? suddenly not working wont do any burn phrase? it can buff and process files..

here is the error log....


[15:50:39] NeroVision Log created (Date: 01/11/2008)


[15:50:39] NeroVision Processors: 2 (Intel)


[15:50:39] NeroVision OS: Windows Windows XP Media Center Edition


[15:50:40] GCCore Detected DirectX Version: 9.0c


[15:50:41] GCHW Node added: Microsoft AC Adapter


[15:50:41] GCHW Node added: Intel Processor


[15:50:41] GCHW Node added: Intel Processor


[15:50:41] GCHW Node added: Intel(R) 82802 Firmware Hub Device


[15:50:41] GCHW Node added: Programmable interrupt controller


[15:50:41] GCHW Node added: System timer


[15:50:41] GCHW Node added: Direct memory access controller


[15:50:41] GCHW Node added: Standard 101/102-Key or Microsoft Natural PS/2 Keyboard


[15:50:41] GCHW Node added: PCI bus


[15:50:41] GCHW Node added: System CMOS/real time clock


[15:50:41] GCHW Node added: Motherboard resources


[15:50:41] GCHW Node added: Motherboard resources


[15:50:41] GCHW Node added: Numeric data processor


[15:50:41] GCHW Node added: Microsoft ACPI-Compliant Embedded Controller


[15:50:41] GCHW Node added: Microsoft ACPI-Compliant Control Method Battery


[15:50:41] GCHW Node added: ACPI Power Button


[15:50:41] GCHW Node added: ACPI Lid


[15:50:41] GCHW Node added: Sony Notebook Control Device


[15:50:41] GCHW Node added: Alps Pointing-device for VAIO


[15:50:41] GCHW Node added: ACPI Thermal Zone


[15:50:41] GCHW Node added: ACPI Thermal Zone


[15:50:41] GCHW Node added: Microsoft ACPI-Compliant System


[15:50:41] GCHW Node added: Plug and Play Monitor


[15:50:41] GCHW Node added: Plug and Play Monitor


[15:50:41] GCHW Node added: Plug and Play Monitor


[15:50:41] GCHW Node added: Disk drive


[15:50:41] GCHW Node added: Disk drive


[15:50:41] GCHW Node added: Realtek High Definition Audio


[15:50:41] GCHW Node added: HDAUDIO Soft Data Fax Modem with SmartCP


[15:50:41] GCHW Node added:


[15:50:41] GCHW Node added: CD-ROM Drive


[15:50:41] GCHW Node added: Disk drive


[15:50:41] GCHW Node added: ISAPNP Read Data Port


[15:50:41] GCHW Node added: Generic CardBus Controller


[15:50:41] GCHW Node added: Texas Instruments OHCI Compliant IEEE 1394 Host Controller


[15:50:41] GCHW Node added: Texas Instruments PCIxx12 Integrated FlashMedia Controller


[15:50:41] GCHW Node added: Marvell Yukon 88E8036 PCI-E Fast Ethernet Controller


[15:50:41] GCHW Node added: LAN-Express AS IEEE 802.11g PCI-E Adapter


[15:50:41] GCHW Node added: Intel(R) 82801 PCI Bridge - 2448


[15:50:41] GCHW Node added: Mobile Intel(R) 945GM/PM/GMS/940GML and Intel(R) 945GT Express Processor to DRAM Controller - 27A0


[15:50:41] GCHW Node added: Mobile Intel(R) 945GM Express Chipset Family


[15:50:41] GCHW Node added: Mobile Intel(R) 945GM Express Chipset Family


[15:50:41] GCHW Node added: Intel(R) 82801GBM (ICH7-M) LPC Interface Controller - 27B9


[15:50:41] GCHW Node added: Intel(R) 82801GBM/GHM (ICH7-M Family) Serial ATA Storage Controller - 27C4


[15:50:41] GCHW Node added: Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8


[15:50:41] GCHW Node added: Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9


[15:50:41] GCHW Node added: Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA


[15:50:41] GCHW Node added: Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC


[15:50:41] GCHW Node added: Intel(R) 82801G (ICH7 Family) PCI Express Root Port - 27D0


[15:50:41] GCHW Node added: Intel(R) 82801G (ICH7 Family) PCI Express Root Port - 27D2


[15:50:41] GCHW Node added: Intel(R) 82801G (ICH7 Family) PCI Express Root Port - 27D4


[15:50:41] GCHW Node added: Microsoft UAA Bus Driver for High Definition Audio


[15:50:41] GCHW Node added: Intel(R) 82801G (ICH7 Family) SMBus Controller - 27DA


[15:50:41] GCHW Node added: Intel(R) 82801G (ICH7 Family) Ultra ATA Storage Controllers - 27DF


[15:50:41] GCHW Node added: Primary IDE Channel


[15:50:41] GCHW Node added: Primary IDE Channel


[15:50:41] GCHW Node added: ACPI Multiprocessor PC


[15:50:41] GCHW Node added: Microsoft Composite Battery


[15:50:41] GCHW Node added: Logical Disk Manager


[15:50:41] GCHW Node added: Volume Manager


[15:50:41] GCHW Node added: Hewlett Packard PhotoSmart C20 Digital Camera


[15:50:41] GCHW Node added: AEGIS Protocol (IEEE 802.1x) v3.5.3.0


[15:50:41] GCHW Node added: AFD


[15:50:41] GCHW Node added: 1394 ARP Client Protocol


[15:50:41] GCHW Node added: ASPI32


[15:50:41] GCHW Node added: Beep


[15:50:41] GCHW Node added: dmboot


[15:50:41] GCHW Node added: Sony DMI Call service


[15:50:41] GCHW Node added: dmload


[15:50:41] GCHW Node added: Symantec Eraser Control driver


[15:50:41] GCHW Node added: EraserUtilRebootDrv


[15:50:41] GCHW Node added: Fips


[15:50:41] GCHW Node added: Generic Packet Classifier


[15:50:41] GCHW Node added: HTTP


[15:50:41] GCHW Node added: IPv6 Windows Firewall Driver


[15:50:41] GCHW Node added: IP Network Address Translator


[15:50:41] GCHW Node added: IPSEC driver


[15:50:41] GCHW Node added: ksecdd


[15:50:41] GCHW Node added: mnmdd


[15:50:41] GCHW Node added: mountmgr


[15:50:41] GCHW Node added: MRENDIS5 NDIS Protocol Driver


[15:50:41] GCHW Node added: NAVENG


[15:50:41] GCHW Node added: NAVEX15


[15:50:41] GCHW Node added: NDIS System Driver


[15:50:41] GCHW Node added: Remote Access NDIS TAPI Driver


[15:50:41] GCHW Node added: NDIS Usermode I/O Protocol


[15:50:41] GCHW Node added: NDProxy


[15:50:41] GCHW Node added: NetBios over Tcpip


[15:50:41] GCHW Node added: Null


[15:50:41] GCHW Node added: NWLink IPX/SPX/NetBIOS Compatible Transport Protocol


[15:50:41] GCHW Node added: NWLink NetBIOS


[15:50:41] GCHW Node added: NWLink SPX/SPXII Protocol


[15:50:41] GCHW Node added: PartMgr


[15:50:41] GCHW Node added: ParVdm


[15:50:41] GCHW Node added: Remote Access Auto Connection Driver


[15:50:41] GCHW Node added: RDPCDD


[15:50:41] GCHW Node added: WLAN Transport


[15:50:41] GCHW Node added: Serial


[15:50:41] GCHW Node added: SPBBCDrv


[15:50:41] GCHW Node added: SRTSPX


[15:50:41] GCHW Node added: SYMDNS


[15:50:41] GCHW Node added: SymEvent


[15:50:41] GCHW Node added: SYMFW


[15:50:41] GCHW Node added: SYMIDS


[15:50:41] GCHW Node added: SYMIDSCO


[15:50:41] GCHW Node added: symlcbrd


[15:50:41] GCHW Node added: SYMNDIS


[15:50:41] GCHW Node added: SYMREDRV


[15:50:41] GCHW Node added: SYMTDI


[15:50:41] GCHW Node added: TCP/IP Protocol Driver


[15:50:41] GCHW Node added: VgaSave


[15:50:41] GCHW Node added: VolSnap


[15:50:41] GCHW Node added: Remote Access IP ARP Driver


[15:50:41] GCHW Node added: Windows Socket 2.0 Non-IFS Service Provider Support Environment


[15:50:41] GCHW Node added: Audio Codecs


[15:50:41] GCHW Node added: Legacy Audio Drivers


[15:50:41] GCHW Node added: Media Control Devices


[15:50:41] GCHW Node added: Legacy Video Capture Devices


[15:50:41] GCHW Node added: Video Codecs


[15:50:41] GCHW Node added: WAN Miniport (L2TP)


[15:50:41] GCHW Node added: WAN Miniport (IP)


[15:50:41] GCHW Node added: WAN Miniport (IPX)


[15:50:41] GCHW Node added: WAN Miniport (PPPOE)


[15:50:41] GCHW Node added: WAN Miniport (PPTP)


[15:50:41] GCHW Node added: Packet Scheduler Miniport


[15:50:41] GCHW Node added: Packet Scheduler Miniport


[15:50:41] GCHW Node added: Packet Scheduler Miniport


[15:50:41] GCHW Node added: Direct Parallel


[15:50:41] GCHW Node added: M-Systems DiskOnChip 2000


[15:50:41] GCHW Node added: Terminal Server Device Redirector


[15:50:41] GCHW Node added: Terminal Server Keyboard Driver


[15:50:41] GCHW Node added: Terminal Server Mouse Driver


[15:50:41] GCHW Node added: Plug and Play Software Device Enumerator


[15:50:41] GCHW Node added: Microcode Update Device


[15:50:41] GCHW Node added: Microsoft System Management BIOS Driver


[15:50:41] GCHW Node added: Generic volume


[15:50:41] GCHW Node added: Generic volume


[15:50:41] GCHW Node added: Generic volume


[15:50:41] GCHW Node added: Generic volume


[15:50:41] GCHW Node added: Generic volume


[15:50:41] GCHW Node added: Microsoft Kernel System Audio Device


[15:50:41] GCHW Node added: Microsoft Kernel Wave Audio Mixer


[15:50:41] GCHW Node added: Microsoft WINMM WDM Audio Compatibility Driver


[15:50:41] GCHW Node added: USB Root Hub


[15:50:41] GCHW Node added: USB Root Hub


[15:50:41] GCHW Node added: USB Root Hub


[15:50:41] GCHW Node added: USB Root Hub


[15:50:41] GCHW Node added: 1394 Net Adapter


[15:50:44] ExpressUI Running NeroVision Express 3 Version: 3.1.0.25


[15:50:46] DVDEngine DVDENGINE.DLL Version Information: Product Version: 3.1.0.11, File Version: 3.1.0.77, Interface Version: 4.0.0.2


[15:50:46] DVDEngine BEGIN: IDVDEngineManagerImpl - CreateDVDVideoSession


[15:50:46] DVDEngine END: IDVDEngineManagerImpl - CreateDVDVideoSession


[15:50:46] DVDEngine BEGIN: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[15:50:46] DVDEngine END: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[15:51:02] MMTools SourceBuilder: building c:\Documents and Settings\sarah Barrett\My Documents\Downloads\Desperate.Housewives... video/0


[15:51:03] MMTools SourceBuilder: --- used source filters ---


[15:51:03] MMTools {E436EBB5-524F-11CE-9F53-0020AF0BA770} - File Source (Async.)


[15:51:03] MMTools {1B544C20-FD0B-11CE-8C63-00AA0044B51E} - AVI Splitter


[15:51:03] MMTools {C0BA9CF8-96E0-4C34-B5DE-E92C3FC05ED6} - Nero Video Decoder


[15:51:03] MMTools SourceBuilder: file type AVI - video


[15:51:03] MMTools --------------------


[15:51:03] DVDEngine BEGIN: IDVDEngineManagerImpl - CreateDVDVideoSession


[15:51:03] DVDEngine END: IDVDEngineManagerImpl - CreateDVDVideoSession


[15:51:03] DVDEngine BEGIN: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[15:51:03] DVDEngine END: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[15:51:06] DVDEngine BEGIN: IDVDEngineManagerImpl - CreateDVDVideoSession


[15:51:06] DVDEngine END: IDVDEngineManagerImpl - CreateDVDVideoSession


[15:51:06] DVDEngine BEGIN: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[15:51:06] DVDEngine END: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[15:51:06] MMTools SourceBuilder: building c:\Documents and Settings\sarah Barrett\My Documents\Downloads\American.Gladiators.... video/0


[15:51:06] MMTools SourceBuilder: --- used source filters ---


[15:51:06] MMTools {E436EBB5-524F-11CE-9F53-0020AF0BA770} - File Source (Async.)


[15:51:06] MMTools {1B544C20-FD0B-11CE-8C63-00AA0044B51E} - AVI Splitter


[15:51:06] MMTools {C0BA9CF8-96E0-4C34-B5DE-E92C3FC05ED6} - Nero Video Decoder


[15:51:06] MMTools SourceBuilder: file type AVI - video


[15:51:06] MMTools --------------------


[15:51:15] DVDEngine BEGIN: IDVDEngineManagerImpl - CreateDVDVideoSession


[15:51:15] DVDEngine END: IDVDEngineManagerImpl - CreateDVDVideoSession


[15:51:15] DVDEngine BEGIN: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[15:51:15] DVDEngine END: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[15:51:23] ExpressUI Burn process started by user.


[15:51:23] ExpressUI Destination: SONY DVD RW AW-Q540A


[15:51:23] ExpressUI Directory for temporary files: C:\DOCUME~1\SARAHB~1\LOCALS~1\Temp


[15:51:23] ExpressUI ------%26lt;NeroVision Project Information%26gt;--------


[15:51:23] ExpressUI --- Project type: DVD-Video


[15:51:23] ExpressUI --- Project video options ---


[15:51:23] ExpressUI Video mode: NTSC


[15:51:23] ExpressUI Aspect ratio: Automatic


[15:51:23] ExpressUI Quality: Automatic


[15:51:23] ExpressUI Resolution: Automatic


[15:51:23] ExpressUI Sample format: Automatic


[15:51:23] ExpressUI File type: MPEG-2


[15:51:23] ExpressUI Audio format: Automatic


[15:51:23] ExpressUI Encoding mode: Fast Encoding (1-Pass)


[15:51:23] ExpressUI --- Project space information ---


[15:51:23] ExpressUI Used disc space: 3.20 GB


[15:51:23] ExpressUI --- Project contents ---


[15:51:23] ExpressUI Sample format: Automatic


[15:51:23] ExpressUI Audio format: Automatic


[15:51:23] ExpressUI Encoding mode: Fast Encoding (1-Pass)


[15:51:23] ExpressUI Number of titles: 2


[15:51:23] ExpressUI 1. Desperate.Housewives.S04E10.PROPER.HDTV.... (Video Title, 0h 41m 28s)


[15:51:23] ExpressUI Video mode: NTSC


[15:51:23] ExpressUI Aspect ratio: 16:9


[15:51:23] ExpressUI Quality: Standard play (5073 kbps)


[15:51:23] ExpressUI Resolution: 704 x 480 (D1)


[15:51:23] ExpressUI Audio SmartEncoding ratio: 0.0 %


[15:51:23] ExpressUI Video SmartEncoding ratio: 0.0 %


[15:51:23] ExpressUI 2. American.Gladiators.2008.S01E02.HDTV.Xvi... (Video Title, 0h 42m 23s)


[15:51:23] ExpressUI Video mode: NTSC


[15:51:23] ExpressUI Aspect ratio: 16:9


[15:51:23] ExpressUI Quality: Standard play (5073 kbps)


[15:51:23] ExpressUI Resolution: 704 x 480 (D1)


[15:51:23] ExpressUI Audio SmartEncoding ratio: 0.0 %


[15:51:23] ExpressUI Video SmartEncoding ratio: 0.0 %


[15:51:23] ExpressUI Number of menus: 1


[15:51:23] ExpressUI - Main menu (1 page)


[15:51:23] ExpressUI --------%26lt;End of Project Information%26gt;----------


[15:51:23] ExpressUI ------Recording Parameters------


[15:51:23] ExpressUI Book Type: 0


[15:51:23] ExpressUI Destination Device: SONY DVD RW AW-Q540A (Capabilities: 000AC117)


[15:51:23] ExpressUI Recording Flags: 77


[15:51:23] ExpressUI Recording Speed: 2089872920


[15:51:23] ExpressUI Volume Name: misc eps


[15:51:23] ExpressUI Burn-at-once flag: 1


[15:51:23] ExpressUI --End of recording parameters---


[15:51:23] DVDEngine BEGIN: IDVDEngineManagerImpl - CreateDVDVideoSession


[15:51:23] DVDEngine END: IDVDEngineManagerImpl - CreateDVDVideoSession


[15:51:23] DVDEngine BEGIN: IDVDSessionBaseImpl - RegisterCallback


[15:51:23] DVDEngine ..Session callback registered...


[15:51:23] DVDEngine END: IDVDSessionBaseImpl - RegisterCallback


[15:51:23] DVDEngine BEGIN: IDVDSessionBaseImpl - RegisterApplicationService


[15:51:23] DVDEngine ..Application service registered...


[15:51:23] DVDEngine END: IDVDSessionBaseImpl - RegisterApplicationService


[15:51:23] DVDUI Device [SONY DVD RW AW-Q540A ] lock SUCCEED


[15:51:23] DVDEngine BEGIN: IDVDSessionBaseImpl - BeginDiscAccess


[15:51:23] DVDEngine ..Access mode=read/write


[15:51:23] DVDEngine ..Flags=0


[15:51:23] DVDEngine ..Write speed=2089872920 KB/s (1.5e+006x)


[15:51:24] DVDEngine ..Medium type=DVD+R


[15:51:24] DVDEngine DVD format is 1, media type is 0x00002008


[15:51:24] DVDEngine Supported Access Modes: 0x00000001


[15:51:24] DVDEngine **BEGIN: IDVDSessionBaseImpl - Update HCB state


[15:51:24] DVDEngine **END: IDVDSessionBaseImpl - Update HCB state


[15:51:24] DVDEngine END: IDVDSessionBaseImpl - BeginDiscAccess


[15:51:24] DVDUI Description creation/update : done


[15:51:24] DVDEngine BEGIN: IDVDVideoSessionImpl - Prepare


[15:51:24] DVDEngine ..BAO activated


[15:51:24] DVDEngine **BEGIN: _DVDVideo - Prepare


[15:51:24] DVDEngine ..VTS_Ns=2...


[15:51:24] DVDEngine ****BEGIN: _DVDVideoBase - Prepare VMG


[15:51:24] DVDEngine ...VMGM_VOBS_exist = true


[15:51:24] DVDEngine ******BEGIN: VMGM_VOBS - Process Create


[15:51:24] DVDEngine ********BEGIN: _VOBS - Process VOB


[15:51:24] DVDEngine **********BEGIN: _VOBS - _M_analyze_cnv_input


[15:51:24] DVDEngine ...Duration 333667


[15:51:24] DVDEngine ..._streamtime_frame_duration is 333667


[15:51:24] DVDEngine ...This is a still stream


[15:51:24] DVDEngine ...Stream 0 is 'Video'


[15:51:24] DVDEngine ...Stream 1 is 'System/Stream'


[15:51:24] DVDEngine **********END: _VOBS - _M_analyze_cnv_input


[15:51:24] NeroVision Analyze video stream


[15:51:24] NeroVision Seg. | frames | weight | volume


[15:51:24] NeroVision ------+---------+--------+--------


[15:51:24] NeroVision 0 | 1 | 1 | 1


[15:51:24] NeroVision ------+---------+--------+--------


[15:51:24] NeroVision total : 1


[15:51:24] NeroVision Estimate Size


[15:51:24] NeroVision +-------+------+--------+----------+----...


[15:51:24] NeroVision |Stream | Seg. | UnComp.| Duration | Size (KB)


[15:51:24] NeroVision +-------+------+--------+----------+----...


[15:51:24] NeroVision | 0 | 0 | 1 | 0.03 | 150


[15:51:24] NeroVision | 1 | 0 | 0 | 0.03 | 0


[15:51:24] NeroVision +-------+------+--------+----------+----...


[15:51:24] NeroVision total data size : 382977 bytes


[15:51:24] NeroVision multiplexed size : 397312 bytes


[15:51:24] DVDEngine ********END: _VOBS - Process VOB


[15:51:24] DVDEngine ******END: VMGM_VOBS - Process Create


[15:51:24] DVDEngine ****END: _DVDVideoBase - Prepare VMG


[15:51:24] DVDEngine ****BEGIN: _DVDVideoBase - Prepare VTS#1


[15:51:24] DVDEngine ...VTSM_VOBS_exist = false


[15:51:24] DVDEngine ******BEGIN: VTSTT_VOBS#1 - Process Create


[15:51:24] DVDEngine ********BEGIN: _VOBS - Process VOB


[15:51:24] DVDEngine **********BEGIN: _VOBS - _M_analyze_cnv_input


[15:51:24] DVDEngine ...Duration 24881881857


[15:51:24] DVDEngine ..._streamtime_frame_duration is 333667


[15:51:24] DVDEngine ...Stream 0 is 'Video'


[15:51:24] DVDEngine ...Stream 1 is 'Audio'


[15:51:24] DVDEngine **********END: _VOBS - _M_analyze_cnv_input


[15:51:24] NeroVision Analyze video stream


[15:51:24] NeroVision Seg. | frames | weight | volume


[15:51:24] NeroVision ------+---------+--------+--------


[15:51:24] NeroVision 0 | 74571 | 1 | 74571


[15:51:24] NeroVision ------+---------+--------+--------


[15:51:24] NeroVision total : 74571


[15:51:24] NeroVision Estimate Size


[15:51:24] NeroVision +-------+------+--------+----------+----...


[15:51:24] NeroVision |Stream | Seg. | UnComp.| Duration | Size (KB)


[15:51:24] NeroVision +-------+------+--------+----------+----...


[15:51:24] NeroVision | 0 | 0 | 1 | 2488.19 | 1541066


[15:51:24] NeroVision | 1 | 0 | 1 | 2488.19 | 59717


[15:51:24] NeroVision +-------+------+--------+----------+----...


[15:51:24] NeroVision total data size : 1639430797 bytes


[15:51:24] NeroVision multiplexed size : 1699309568 bytes


[15:51:24] MMTools SourceBuilder: building cached c:\Documents and Settings\sarah Barrett\My Documents\Downloads\Desperate.Housewives... video/0


[15:51:26] MMTools SourceBuilder: building c:\Documents and Settings\sarah Barrett\My Documents\Downloads\Desperate.Housewives... audio/0


[15:51:26] MMTools SourceBuilder: --- used source filters ---


[15:51:26] MMTools {E436EBB5-524F-11CE-9F53-0020AF0BA770} - File Source (Async.)


[15:51:26] MMTools {1B544C20-FD0B-11CE-8C63-00AA0044B51E} - AVI Splitter


[15:51:26] MMTools {38BE3000-DBF4-11D0-860E-00A024CFEF6D} - MPEG Layer-3 Decoder


[15:51:26] MMTools SourceBuilder: file type AVI - audio


[15:51:26] MMTools --------------------


[15:51:26] DVDEngine ********END: _VOBS - Process VOB


[15:51:26] DVDEngine ******END: VTSTT_VOBS#1 - Process Create


[15:51:26] DVDEngine ****END: _DVDVideoBase - Prepare VTS#1


[15:51:26] DVDEngine ****BEGIN: _DVDVideoBase - Prepare VTS#2


[15:51:26] DVDEngine ...VTSM_VOBS_exist = false


[15:51:26] DVDEngine ******BEGIN: VTSTT_VOBS#2 - Process Create


[15:51:26] DVDEngine ********BEGIN: _VOBS - Process VOB


[15:51:26] DVDEngine **********BEGIN: _VOBS - _M_analyze_cnv_input


[15:51:26] DVDEngine ...Duration 25433767075


[15:51:26] DVDEngine ..._streamtime_frame_duration is 333667


[15:51:26] DVDEngine ...Stream 0 is 'Video'


[15:51:26] DVDEngine ...Stream 1 is 'Audio'


[15:51:26] DVDEngine **********END: _VOBS - _M_analyze_cnv_input


[15:51:26] NeroVision Analyze video stream


[15:51:26] NeroVision Seg. | frames | weight | volume


[15:51:26] NeroVision ------+---------+--------+--------


[15:51:26] NeroVision 0 | 76225 | 1 | 76225


[15:51:26] NeroVision ------+---------+--------+--------


[15:51:26] NeroVision total : 76225


[15:51:26] NeroVision Estimate Size


[15:51:26] NeroVision +-------+------+--------+----------+----...


[15:51:26] NeroVision |Stream | Seg. | UnComp.| Duration | Size (KB)


[15:51:26] NeroVision +-------+------+--------+----------+----...


[15:51:26] NeroVision | 0 | 0 | 1 | 2543.38 | 1575242


[15:51:26] NeroVision | 1 | 0 | 1 | 2543.38 | 61041


[15:51:26] NeroVision +-------+------+--------+----------+----...


[15:51:26] NeroVision total data size : 1675783531 bytes


[15:51:26] NeroVision multiplexed size : 1736990720 bytes


[15:51:26] MMTools SourceBuilder: building cached c:\Documents and Settings\sarah Barrett\My Documents\Downloads\American.Gladiators.... video/0


[15:51:27] MMTools SourceBuilder: building c:\Documents and Settings\sarah Barrett\My Documents\Downloads\American.Gladiators.... audio/0


[15:51:27] MMTools SourceBuilder: --- used source filters ---


[15:51:27] MMTools {E436EBB5-524F-11CE-9F53-0020AF0BA770} - File Source (Async.)


[15:51:27] MMTools {1B544C20-FD0B-11CE-8C63-00AA0044B51E} - AVI Splitter


[15:51:27] MMTools {38BE3000-DBF4-11D0-860E-00A024CFEF6D} - MPEG Layer-3 Decoder


[15:51:27] MMTools SourceBuilder: file type AVI - audio


[15:51:27] MMTools --------------------


[15:51:27] DVDEngine ********END: _VOBS - Process VOB


[15:51:27] DVDEngine ******END: VTSTT_VOBS#2 - Process Create


[15:51:27] DVDEngine ****END: _DVDVideoBase - Prepare VTS#2


[15:51:27] DVDEngine **END: _DVDVideo - Prepare


[15:51:27] DVDEngine ..Estimated size=3.20 GB


[15:51:27] DVDEngine ..Estimated duration=1 hour 8 min 40 sec


[15:51:27] DVDEngine END: IDVDVideoSessionImpl - Prepare


[15:51:27] DVDEngine BEGIN: IDVDSessionBaseImpl - GetDiscCaps


[15:51:27] DVDEngine ..Caps=DSCCAP_VLMNM_UDF | DSCCAP_VLMNM_ISO9660


[15:51:27] DVDEngine END: IDVDSessionBaseImpl - GetDiscCaps


[15:51:27] DVDEngine BEGIN: IDVDSessionBaseImpl - SetLabel


[15:51:27] DVDEngine Volume name (ISO9660)="________"


[15:51:27] DVDEngine END: IDVDSessionBaseImpl - SetLabel


[15:51:27] DVDEngine BEGIN: IDVDSessionBaseImpl - SetLabel


[15:51:27] DVDEngine Volume name (UDF)="misc eps"


[15:51:27] DVDEngine END: IDVDSessionBaseImpl - SetLabel


[15:51:27] DVDEngine BEGIN: IDVDVideoSessionImpl - GetDiscContent


[15:51:27] DVDEngine **BEGIN: _DVDVideo - Fill FileSystemDescContainer


[15:51:27] DVDEngine ..File: 'VIDEO_TS\VIDEO_TS.IFO' (VMGI), location={undefined}, size=12.0 KB (12,288 bytes)


[15:51:27] DVDEngine ..File: 'VIDEO_TS\VIDEO_TS.VOB' (VMGM_VOBS), location={undefined}, size=416 KB (425,984 bytes)


[15:51:27] DVDEngine ..File: 'VIDEO_TS\VIDEO_TS.BUP' (VMGI), location={undefined}, size=12.0 KB (12,288 bytes)


[15:51:27] DVDEngine ..File: 'VIDEO_TS\VTS_01_0.IFO' (VTSI), location={undefined}, size=36.0 KB (36,864 bytes)


[15:51:27] DVDEngine ..File: 'VIDEO_TS\VTS_01_1.VOB' (VTSTT_VOBS), location={undefined}, size=1.58 GB (1,699,315,712 bytes)


[15:51:27] DVDEngine ..File: 'VIDEO_TS\VTS_01_0.BUP' (VTSI), location={undefined}, size=36.0 KB (36,864 bytes)


[15:51:27] DVDEngine ..File: 'VIDEO_TS\VTS_02_0.IFO' (VTSI), location={undefined}, size=36.0 KB (36,864 bytes)


[15:51:27] DVDEngine ..File: 'VIDEO_TS\VTS_02_1.VOB' (VTSTT_VOBS), location={undefined}, size=1.62 GB (1,736,998,912 bytes)


[15:51:27] DVDEngine ..File: 'VIDEO_TS\VTS_02_0.BUP' (VTSI), location={undefined}, size=36.0 KB (36,864 bytes)


[15:51:27] DVDEngine **END: _DVDVideo - Fill FileSystemDescContainer


[15:51:27] DVDEngine END: IDVDVideoSessionImpl - GetDiscContent


[15:51:28] NeroAPI Can only write at 6x (8,310 KB/s) instead of 1.5144e+006x (2,089,872,920 KB/s) to current disc.


[15:51:28] NeroAPI Burn process started at 6x (8,310 KB/s)


[15:51:28] DVDEngine BEGIN: IDVDVideoSessionImpl - CreateDisc


[15:51:28] DVDEngine **BEGIN: _DVDVideo - Create


[15:51:28] DVDEngine ****BEGIN: Create - VMGM_VOBS


[15:51:28] DVDEngine ******BEGIN: VMGM_VOBS - Process Create


[15:51:28] DVDEngine ********BEGIN: _VOBS - Process VOB


[15:51:28] DVDEngine **********BEGIN: _VOBS - _M_analyze_cnv_input


[15:51:28] DVDEngine ...Duration 333667


[15:51:28] DVDEngine ..._streamtime_frame_duration is 333667


[15:51:28] DVDEngine ...This is a still stream


[15:51:28] DVDEngine ...Stream 0 is 'Video'


[15:51:28] DVDEngine ...Stream 1 is 'System/Stream'


[15:51:28] DVDEngine **********END: _VOBS - _M_analyze_cnv_input


[15:51:28] NeroVision Analyze video stream


[15:51:28] NeroVision Seg. | frames | weight | volume


[15:51:28] NeroVision ------+---------+--------+--------


[15:51:28] NeroVision 0 | 1 | 1 | 1


[15:51:28] NeroVision ------+---------+--------+--------


[15:51:28] NeroVision total : 1


[15:51:28] DVDEngine **********BEGIN: IDVDEngineManagerImpl - CreateSubpictureSource


[15:51:28] DVDEngine **********END: IDVDEngineManagerImpl - CreateSubpictureSource


[15:51:28] DVDEngine **********BEGIN: CSPU::Process()


[15:51:28] DVDEngine ...'Decoding SubPicture No.' is '0'


[15:51:28] DVDEngine ..._nLines == 480


[15:51:28] DVDEngine ...Found 'bottom half' in the bottom field at bit 6880, addr. is 860 (241)


[15:51:28] DVDEngine ...Detected 'top half' at 1, addr. is 2


[15:51:28] DVDEngine ...Detected 'bottom half' at 1, addr. is 860


[15:51:28] DVDEngine ...Lines processed: 480


[15:51:28] DVDEngine ...processed 1 packs


[15:51:28] DVDEngine **********END: CSPU::Process()


[15:51:28] DVDEngine ...New VOB 1


[15:51:28] DVDEngine ..+VOB#1: VOB_IDN=1, SA=0, VOB_V_S_PTM=27844


[15:51:28] DVDEngine ...New CELL 1


[15:51:28] DVDEngine ....+Cell#1: C_IDN=1


[15:51:28] DVDEngine BTNGR1_DSP_TY == 15587870


[15:51:28] DVDEngine ....|Cell#1: C_IDN=1, [0;17], VOBU_Ns=1, C_PBTM=0s.12


[15:51:28] DVDEngine ..|VOB#1: VOB_IDN=1, [0;17], C_Ns=1, VOB_V_S_PTM=27844, VOB_V_E_PTM=63880


[15:51:28] DVDEngine ********END: _VOBS - Process VOB


[15:51:28] DVDEngine ********BEGIN: VMGM_VOBS - INFORMATION after Create


[15:51:28] DVDEngine ----------------------------------------...


[15:51:28] DVDEngine General information:


[15:51:28] DVDEngine ..size=18 (36.0 KB)


[15:51:28] DVDEngine ..capacity=18 (36.0 KB)


[15:51:28] DVDEngine ..max_capacity=524287 (1.00 GB)


[15:51:28] DVDEngine ..VOB_Ns=1


[15:51:28] DVDEngine ..C_Ns=1


[15:51:28] DVDEngine ..VOBU_Ns=1


[15:51:28] DVDEngine VOB information:


[15:51:28] DVDEngine ...VOB#1: VOB_IDN=1, [0;17], C_Ns=1, VOB_V_S_PTM=27844, VOB_V_E_PTM=63880


[15:51:28] DVDEngine .....Cell#1: C_IDN=1, [0;17], VOBU_Ns=1, C_PBTM=0s.12


[15:51:28] DVDEngine ----------------------------------------...


[15:51:28] DVDEngine ********END: VMGM_VOBS - INFORMATION after Create


[15:51:28] DVDEngine ******END: VMGM_VOBS - Process Create


[15:51:28] DVDEngine ******BEGIN: VMGM_VOBS - Verify


[15:51:28] DVDEngine ******END: VMGM_VOBS - Verify


[15:51:28] DVDEngine ..VMGM_VOBS: size=36.0 KB (36,864 bytes)


[15:51:28] DVDEngine ****END: Create - VMGM_VOBS


[15:51:28] DVDEngine ****BEGIN: Create - VTSTT_VOBS#1


[15:51:55] NeroAPI Writing file to disc failed


[15:51:55] DVDEngine ########################################...


[15:51:55] DVDEngine _BAOFile::Write(): NeroBAOOpenFile() returned 3 (NEROAPI_BURN_FAILED)


[15:51:55] DVDEngine ########################################...


[15:51:55] DVDEngine 1A2002310530177704728594*


[15:51:55] DVDEngine Windows XP 5.1


[15:51:55] DVDEngine IA32


[15:51:55] DVDEngine WinAspi: File 'Wnaspi32.dll': Ver=4.60 (1021), size=45056 bytes, created 10/09/1999 12:06:00


[15:51:55] DVDEngine ahead WinASPI: File 'C:\Program Files\Ahead\NeroVision\NeroFiles\Wnaspi3... Ver=2.0.1.74, size=164112 bytes, created 02/11/2004 12:54:32


[15:51:55] DVDEngine NT-SPTI used


[15:51:55] DVDEngine Nero API version: 6.6.1.4


[15:51:55] DVDEngine Using interface version: 6.6.0.10


[15:51:55] DVDEngine Installed in: C:\Program Files\Ahead\NeroVision\NeroFiles\


[15:51:55] DVDEngine Application: ahead\NeroVision


[15:51:55] DVDEngine Internal Version: 6, 6, 1, 4d


[15:51:55] DVDEngine Recorder: %26lt;SONY DVD RW AW-Q540A%26gt; Version: 2.73 - HA 1 TA 0 - 6.6.1.4


[15:51:55] DVDEngine Adapter driver: %26lt;IDE%26gt; HA 1


[15:51:55] DVDEngine Drive buffer : 2048kB


[15:51:55] DVDEngine Bus Type : via Inquiry data (1) -%26gt; ATAPI, detected: ?


[15:51:55] DVDEngine Connected to MMC as unknown drive with class-nr : 1


[15:51:55] DVDEngine Drive is autodetected - recorder class: Std. MMC recorder


[15:51:55] DVDEngine === Scsi-Device-Map ===


[15:51:55] DVDEngine CdRomPeripheral : SONY DVD RW AW-Q540A atapi Port 0 ID 0 DMA: On


[15:51:55] DVDEngine DiskPeripheral : TOSHIBA MK8032GSX atapi Port 1 ID 0 DMA: On


[15:51:55] DVDEngine === CDRom-Device-Map ===


[15:51:55] DVDEngine SONY DVD RW AW-Q540A G: CDRom0


[15:51:55] DVDEngine =======================


[15:51:55] DVDEngine AutoRun : 1


[15:51:55] DVDEngine Excluded drive IDs:


[15:51:55] DVDEngine WriteBufferSize: 83886080 (0) Byte


[15:51:55] DVDEngine ShowDrvBufStat : 0


[15:51:55] DVDEngine BUFE : 0


[15:51:55] DVDEngine Physical memory : 1014MB (1038444kB)


[15:51:55] DVDEngine Free physical memory: 225MB (230832kB)


[15:51:55] DVDEngine Memory in use : 77 %


[15:51:55] DVDEngine Uncached PFiles: 0x0


[15:51:55] DVDEngine Use Inquiry : 1


[15:51:55] DVDEngine Global Bus Type: default (0)


[15:51:55] DVDEngine Check supported media : Disabled (0)


[15:51:55] DVDEngine 11.1.2008


[15:51:55] DVDEngine NeroAPI


[15:51:55] DVDEngine 15:51:28 #1 Text 0 File DlgWaitCD.cpp, Line 281


[15:51:55] DVDEngine Last possible write address on media: 2295103 (510:01.28, 4482MB)


[15:51:55] DVDEngine Last address to be written: -1 ( 0:00.-1, 0MB)


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:28 #2 Text 0 File DlgWaitCD.cpp, Line 293


[15:51:55] DVDEngine Write in overburning mode: NO (enabled: CD)


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:28 #3 Text 0 File DlgWaitCD.cpp, Line 2612


[15:51:55] DVDEngine Recorder: SONY DVD RW AW-Q540A, Media type: DVD+R


[15:51:55] DVDEngine Disc Manufacturer ID: CMC MAG, Media Type ID: E01, Product revision number: 0


[15:51:55] DVDEngine Disc Application Code: 0, Extended Information Indicators: 3


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:28 #4 Text 0 File DlgWaitCD.cpp, Line 459


[15:51:55] DVDEngine %26gt;%26gt;%26gt; Protocol of DlgWaitCD activities: %26lt;%26lt;%26lt;


[15:51:55] DVDEngine =======================================...


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:28 #5 Text 0 File SCSIPassThrough.cpp, Line 38


[15:51:55] DVDEngine SPTILockVolume - completed successfully for FCTL_LOCK_VOLUME


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:28 #6 Text 0 File SCSIPassThrough.cpp, Line 83


[15:51:55] DVDEngine SPTIDismountVolume - completed successfully for FSCTL_DISMOUNT_VOLUME


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:28 #7 Text 0 File Cdrdrv.cpp, Line 8647


[15:51:55] DVDEngine ---- DVD Structure: Physical Format Information (00h) ----


[15:51:55] DVDEngine Media Type: 0, Layer: 0, Address: 0 (0 h), AGID: 0; Length: 2050


[15:51:55] DVDEngine Book Type: DVD+R (10), Part Version: 1.0x (1)


[15:51:55] DVDEngine Disc Size: 120 mm, Maximum Rate: %26lt;not specified%26gt; (F h)


[15:51:55] DVDEngine Number of Layers: 1, Track Path: Parallel Track Path (PTP), Layer Type: recordable


[15:51:55] DVDEngine Linear Density: 0,267 um/bit, Track Density: 0,74 um/track


[15:51:55] DVDEngine Starting Physical Sector Number of Data Area: 30000 h (DVD-ROM, DVD-R/-RW, DVD+R/+RW)


[15:51:55] DVDEngine End Physical Sector Number of Data Area: 26053F h


[15:51:55] DVDEngine End Sector Number in Layer 0: 0 h (LBN: FFFD0000 h, 4193920 MB)


[15:51:55] DVDEngine Data in Burst Cutting Area (BCA) does not exist


[15:51:55] DVDEngine Disc Application Code: 0 / 0 h


[15:51:55] DVDEngine Extended Information indicators: 3 h


[15:51:55] DVDEngine Disc Manufacturer ID: CMC.MAG.


[15:51:55] DVDEngine Media type ID: E01


[15:51:55] DVDEngine Product revision number: 0


[15:51:55] DVDEngine Number of Physical format information bytes in use in ADIP up to byte 63: 56


[15:51:55] DVDEngine Media Specific [16..63]:


[15:51:55] DVDEngine 00 00 03 43 4D 43 20 4D - 41 47 00 45 30 31 00 38 ...CMC.MAG.E01.8


[15:51:55] DVDEngine 23 54 37 10 02 38 6A 02 - 88 67 15 15 0B 0B 08 08 #T7..8j..g......


[15:51:55] DVDEngine 01 19 1B 0C 0C 0C 0D 01 - 00 00 00 00 00 00 00 00 ................


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:28 #8 Text 0 File DVDPlusRW.cpp, Line 666


[15:51:55] DVDEngine Start write address at LBA 0


[15:51:55] DVDEngine DVD high compatibility mode: No


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:28 #9 Text 0 File BurnAtOnceRecorder.cpp, Line 939


[15:51:55] DVDEngine Can only write at 6x (8,310 KB/s) instead of 1.5144e+006x (2,089,872,920 KB/s) to current disc.


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:28 #10 Text 0 File BurnAtOnceRecorder.cpp, Line 1010


[15:51:55] DVDEngine Estimated filesystem size: 544


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:28 #11 Phase 36 File APIProgress.cpp, Line 275


[15:51:55] DVDEngine Burn process started at 6x (8,310 KB/s)


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:28 #12 Text 0 File BurnAtOnceRecorder.cpp, Line 1704


[15:51:55] DVDEngine Buffering files started


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:28 #13 Text 0 File BurnAtOnceRecorder.cpp, Line 1415


[15:51:55] DVDEngine Buffering VIDEO_TS.VOB


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:28 #14 Text 0 File BurnAtOnceRecorder.cpp, Line 2580


[15:51:55] DVDEngine Finished buffering file VIDEO_TS.VOB of size 36864 bytes (18 sectors)


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:28 #15 Text 0 File BurnAtOnceRecorder.cpp, Line 2647


[15:51:55] DVDEngine Finished writing file VIDEO_TS.VOB of size 36864 bytes (18 sectors)


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:28 #16 Text 0 File BurnAtOnceRecorder.cpp, Line 2660


[15:51:55] DVDEngine Buffering files finished successfully


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:54 #17 SPTI -1106 File SCSIPassThrough.cpp, Line 289


[15:51:55] DVDEngine G: CdRom0: SCSIStatus(x02) WinError(0) NeroError(-1106)


[15:51:55] DVDEngine Sense Key: 0x03 (KEY_MEDIUM_ERROR)


[15:51:55] DVDEngine Sense Code: 0x73


[15:51:55] DVDEngine Sense Qual: 0x03


[15:51:55] DVDEngine CDB Data: 0x53 00 00 00 00 00 00 02 60 00 00 00


[15:51:55] DVDEngine Sense Area: 0x70 00 03 00 00 00 00 0A 00 00 00 00 73 03


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:54 #18 Text 0 File BurnAtOnceRecorder.cpp, Line 681


[15:51:55] DVDEngine Error reserving fragment (0)


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:55 #19 Text 0 File BurnAtOnceRecorder.cpp, Line 3657


[15:51:55] DVDEngine Disc info:


[15:51:55] DVDEngine Partitions: 0


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:55 #20 Text 0 File BurnAtOnceRecorder.cpp, Line 1877


[15:51:55] DVDEngine Error reserving start segment


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:55 #21 Text 0 File BurnAtOnceRecorder.cpp, Line 3657


[15:51:55] DVDEngine Disc info:


[15:51:55] DVDEngine Partitions: 0


[15:51:55] DVDEngine


[15:51:55] DVDEngine 15:51:55 #22 Phase 179 File APIProgress.cpp, Line 275


[15:51:55] DVDEngine Writing file to disc failed


[15:51:55] DVDEngine


[15:51:55] DVDEngine Existing drivers:


[15:51:55] DVDEngine File 'Drivers\CDRALW2K.SYS': Ver=8.0.0.212 , size=2560 bytes, created 03/11/2005 02:00:00


[15:51:55] DVDEngine File 'Drivers\ASPI32.SYS': Ver=4.60 (1021), size=25244 bytes, created 10/09/1999 12:06:00


[15:51:55] DVDEngine File 'Drivers\PXHELP20.SYS': Ver=3.00.43J, size=36624 bytes, created 23/04/2007 00:15:25 (Prassi/Veritas driver for win 2K)


[15:51:55] DVDEngine Registry Keys:


[15:51:55] DVDEngine HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\AllocateCDROM... : 0 (Security Option)


[15:51:55] DVDEngine _Xcept (): Signalling Exception: 129 NeroBAOOpenFile() returned error condition _BAOContext::OpenFile()


[15:51:55] DVDEngine ****END: Create - VTSTT_VOBS#1


[15:51:55] DVDEngine **END: _DVDVideo - Create


[15:51:55] DVDEngine ########################################...


[15:51:55] DVDEngine ERROR


[15:51:55] DVDEngine cause: 129 (neroapi_call_failed)


[15:51:55] DVDEngine source: NeroBAOOpenFile() returned error condition


[15:51:55] DVDEngine description: _BAOContext::OpenFile()


[15:51:55] DVDEngine ########################################...


[15:51:55] DVDEngine **BEGIN: IDVDSessionBaseImpl - Clear


[15:51:55] DVDEngine **END: IDVDSessionBaseImpl - Clear


[15:51:55] DVDEngine END: IDVDVideoSessionImpl - CreateDisc


[15:51:59] NeroAPI Burn process failed at 6x (8,310 KB/s)


[15:51:59] DVDEngine BEGIN: IDVDSessionBaseImpl - EndDiscAccess


[15:51:59] DVDEngine ..Flags=0


[15:51:59] DVDEngine **BEGIN: _MediaAccess::Release ()


[15:51:59] DVDEngine **END: _MediaAccess::Release ()


[15:51:59] DVDEngine END: IDVDSessionBaseImpl - EndDiscAccess


[15:51:59] DVDEngine BEGIN: IDVDSessionBaseImpl - RegisterCallback


[15:51:59] DVDEngine ..Session callback unregistered...


[15:51:59] DVDEngine END: IDVDSessionBaseImpl - RegisterCallback


[15:51:59] DVDUI Device [SONY DVD RW AW-Q540A ] unlock SUCCEED

I need help with nero vision 3?? suddenly not working wont do any burn phrase? it can buff and process files..
can you give abit more information please


Help overloading assignment operator in C++?

Trying to overload the assignment operator in C++





Point%26amp; Point::operator=(const Point%26amp; p)


{


if(this != %26amp;p)


{


delete [] label; //Deletes label


label = new char(strlen (*(p.label)));


strcpy(label, (*(p.label)));


x = (*(p.x)); //Copies x.


y = (*(p.y)); //Copies y


}


return *this; //Returns *this.


}





h:\point\point\point\point.cpp(64) : error C2664: 'strlen' : cannot convert parameter 1 from 'char' to 'const char *'


Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast


h:\point\point\point\point.cpp(64) : fatal error C1903: unable to recover from previous error(s); stopping compilation





With line 64 commented out:





h:\point\point\point\point.cpp(65) : error C2664: 'strcpy' : cannot convert parameter 2 from 'char' to 'const char *'


Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast


h:\point\point\point\point.cpp(66) : error C2440: '=' : cannot convert from 'double' to 'double *'


h:\point\point\point\point.cpp(67) : error C2440: '=' : cannot convert from 'double' to 'double *'

Help overloading assignment operator in C++?
label = new char(strlen (*(p.label)));


strcpy(label, (*(p.label)));


x = (*(p.x)); //Copies x.


y = (*(p.y)); //Copies y





The code above replace with





label = new char(strlen ((p.label)));


strcpy(label, ((p.label)));


x = p.x; //Copies x.


y = p.y; //Copies y
Reply:????
Reply:Ok, The line


Point%26amp; Point::operator = (const Point%26amp; p)


This means that your argument to the function is passed by reference, and returns a reference.


A reference argument is used like a regular argument, no special treatment required.


I believe the assignment operator is redefined as


Point%26amp; Point::operator = (const Point%26amp; p)


The complete function would be


Point%26amp; Point::operator = (const Point%26amp; p)


{


if (this == %26amp;p)


return *this;


char *temp;


double dx, dy;


temp = new char[strlen(p.label) + 1];


strcpy(temp, p.label);


dx = p.x;


dy = p.y;


x = dx;


y = dy;


delete label;


label = new char[strlen(temp) + 1];


strcpy(label, temp);


delete temp;


return *this;


}

printable cards

Error with installsheild/game HELP!?

okay so i am trying to install civilization 4 on computer and it starts the install set up and then it says: An error (-5009 : 0x8002802b) has ocurred while running the setup. Please make sure you have finished any previous setup and closed other applications If he error still occurs, please contact your vendor : firaxis Games [#idds_***********##) Errr Code: -5009 : 0x8002802b Error Information: %26gt;Ctor\ObjectWrapper.cpp (163)


%26gt;Ctor\ObjectWrapper.cpp (391)


%26gt;Kernel\Component.cpp (1163)


%26gt;Ctor\ObjectWrapper.cpp (34)


%26gt;Ctor\DriverWrapper.cpp (31)


%26gt;Kernel\Component.cpp (1152)


%26gt;Kernel\CABFile.cpp (384)


%26gt;SetupDLL\SetupDLL.cpp (1526)


PAPP:Sid Meier's Civilization 4


PVENDOR:Firaxis Games (##IDS_***********##) PGUID:CFBCE791-2D53-4FCE-B3FB-D6E01F4112... $11.0.0.28844 @Windows XP Service Pack 2 (2600) IE 7.0.6000.16414.











any help please?!

Error with installsheild/game HELP!?
after restarting your computer, go to the windows explorer to Documents and settings for your username. You should see a folder called local settings (if you don't, go to the view menu of the windows explorer, then folder options, click on the second tab at the top and choose to show hidden files and folders), then in the local settings, find the temp directory and highlight all of the files (not the temp folder itself, but all of the files contained). Delete them and try installing the game again.


I got an error when installing splicam?

i'm sick of it nobodies taking care of it and i would like to have it but how come cannot installed it again over and voer again always that error


Error Code: -5009 : 0x8002802b


Error Information:


%26gt;Ctor\ObjectWrapper.cpp (163)


%26gt;Ctor\ObjectWrapper.cpp (391)


%26gt;Kernel\Component.cpp (1161)


%26gt;Kernel\CABFile.cpp (384)


%26gt;SetupDLL\SetupDLL.cpp (1694)


PAPP:SplitCam


PVENDOR:LoteSoft Co. (http://www.splitcamera.com)


PGUID:00718491-55BF-46C6-83EF-4B3B95AC...


$10.0.0.159PAK


@Windows XP Service Pack 2 (2600) IE 7.0.6000.16414

I got an error when installing splicam?
follow this link there are a few possible solutions :)


http://community.installshield.com/showt...


Can't run games, missing a DirectX DLL File?

Can't run games like MS Flight Simulator X or Medieval 2... get error D3DX9_30.dll is missing, and invalid version of Directx. I ran autoupdate on MS site, directX is current (9.0c). DXdiag shows no problems. When I try to reinstall get an 'internal error' and installation fails. Tried several releases inclucluding December and April. Running MS PRofessional X64.


Here's snipplet from dxerror.log:





--------------------


[01/09/07 15:08:36] module: dxupdate(Mar 31 2006), file: dxupdate.cpp, line: 2221, function: RegisterDLL





Failed API:LoadLibraryEx()


Error:(193) - %1 is not a valid Win32 application.











Unable to load C:\WINDOWS\system32\xactengine2_1.dll.





--------------------


[01/09/07 15:08:36] module: dxupdate(Mar 31 2006), file: dxupdate.cpp, line: 5763, function: DirectXUpdateInstallPlugIn





RegisterDllFromSection() failed.





--------------------


[01/09/07 15:08:36] module: dsetup32(Mar 31 2006), file: dxupdate.cpp, line: 280, function:

Can't run games, missing a DirectX DLL File?
Re-download and install DirectX from http://www.microsoft.com/downloads/detai...
Reply:That's Right : youn can't run the program "Flight Simulater or


Xmedieval2 unless yourself has gp-force mix 4000 /Vedio Graphics Card installed plus buy the3D Force Joystick as required !


see http://www.flightsimulator.microsoftware...


then refer http://www.xmedieval2.repairs .Those are for windows


xp 95-98 updated types ok ?
Reply:Don't feel left out, because I just searched my system and D3DX9_30.dll could not be found, either.


http://www.gamedev.net/community/forums/...


See a discussion of the problem here. And while yo are at it type


D3DX9_30.dll in the search line of your browser. There are a bunch of fixes from renaming to downloading a .dll.
Reply:Insert your WinXp Cd %26amp; go for the repair option in the installation process. That should solve it!


How do i fix this compiler error "undefined symbol main"?

i'm compiling my c++ program in linux and i keep getting this message:


"


%26gt; make


g++ -Wall -c -g project2.cpp


g++ -Wall -c -g image.cpp


g++ -o project2.exe /user/cse232/Projects/P2Graphics/color.o...


/user/cse232/Projects/P2Graphics/functio... image.o


Undefined first referenced


symbol in file


main /soft/sparc/gcc3.4.1/lib/gcc/sparc-sun-s...


ld: fatal: Symbol referencing errors. No output written to project2.exe


collect2: ld returned 1 exit status


*** Error code 1


make: Fatal error: Command failed for target `project2.exe'


"


i do have a main() function in project2.cpp. i checked it many times and dont know what could be wrong with it. is it something with my makefile? any help would be GREATLY appreciated.

How do i fix this compiler error "undefined symbol main"?
You said that there's a main() in project2.cpp, so check in your Makefile whether project2.o is being linked together with image.cpp.





On the line:





g++ -o project2.exe /user/cse232/Projects/P2Graphi...





You didn't send the entire command being sent to the linker, but I'm guessing that it must have image.o because that's the module that's referencing main(). Check if project2.o is also in that line.





The -o project2.exe does not implicitly cause project2.o to be included in the linking.
Reply:a main function:





int main(int argc,char* argv[])





is the beginning point of a c program. argc is the argument count and argv is an array of arguments passed to the program.





really. i think you should restudy c++.

love song lyrics

C++ Using functions that are declared in other class?

Hi!!!





For example I have this:





//a.cpp


#include a.h


a :: a(){...}


int a :: fun() { int x= 123445564343 return x}





//b.cpp


#include b.h


b :: b(){


... //I want call here fun() declared in "a.cpp" and assign the value returned.


}





How can I do that?


Please give me an example.





Thanks!!!

C++ Using functions that are declared in other class?
You cannot employ member methods from other classes unless the class that wants to use them is a child of the first class.
Reply:For the following I assume that the class a is declared in a.h and b is not derived from a.


1) To access a::fun() b.cpp need its definition so you need "#include a.h" in b.cpp.


2) Make sure that fun() is declared public in a.h.


3) Normally a method of a class accesses its members so it must be called on an instance of that class


Ex:


. int i;


. a test;


. i = test.fun();


For the case you are describing, fun() does not use any of a's members so it could be declared static in a.h and then called directly as "i = a::fun()" without creating an instance of a.





I hope this helps you.
Reply:You can't call varibles of one class to another, unless it is a subclass and in some cases if variables are not declared private. You can't use varibles of one class to another, if so, you have to declare them as public and be sure that they have to be out of any class.


Burning movie with my nero?

i am burning movie through my nero burner that i purchased.before it dont give me problem this past 5 days it transcode and burns but error halfway.the error file is this [06:27:10] NeroVision Log created (Date: 11/02/2007)


[06:27:10] NeroVision Processors: 1 (Intel)


[06:27:10] NeroVision OS: Windows Windows XP


[06:27:17] GCCore Detected DirectX Version: 9.0c


[06:27:22] GCHW Node added: ACPI Fixed Feature Button


[06:27:22] GCHW Node added: Intel Processor


[06:27:22] GCHW Node added: Intel(R) 82802 Firmware Hub Device


[06:27:22] GCHW Node added: Programmable interrupt controller


[06:27:22] GCHW Node added: System timer


[06:27:22] GCHW Node added: Direct memory access controller


[06:27:22] GCHW Node added: Standard 101/102-Key or Microsoft Natural PS/2 Keyboard


[06:27:22] GCHW Node added: ECP Printer Port


[06:27:22] GCHW Node added: Communications Port


[06:27:22] GCHW Node added: Communications Port


[06:27:22] GCHW Node added: Standard floppy disk controller


[06:27:22] GCHW Node added: System speaker


[06:27:22] GCHW Node added: PCI bus


[06:27:22] GCHW Node added: Generic Bus


[06:27:22] GCHW Node added: System CMOS/real time clock


[06:27:22] GCHW Node added: Motherboard resources


[06:27:22] GCHW Node added: Motherboard resources


[06:27:22] GCHW Node added: Motherboard resources


[06:27:22] GCHW Node added: Numeric data processor


[06:27:22] GCHW Node added: ACPI Power Button


[06:27:22] GCHW Node added: ACPI Thermal Zone


[06:27:22] GCHW Node added: Microsoft ACPI-Compliant System


[06:27:22] GCHW Node added: Plug and Play Monitor


[06:27:22] GCHW Node added: Floppy disk drive


[06:27:22] GCHW Node added: HID-compliant mouse


[06:27:22] GCHW Node added:


[06:27:22] GCHW Node added: CD-ROM Drive


[06:27:22] GCHW Node added: CD-ROM Drive


[06:27:22] GCHW Node added: Disk drive


[06:27:22] GCHW Node added: ISAPNP Read Data Port


[06:27:22] GCHW Node added: Printer Port Logical Interface


[06:27:22] GCHW Node added: Intel(R) PRO/100 VE Network Connection


[06:27:22] GCHW Node added: Intel(R) 82801 PCI Bridge - 244E


[06:27:22] GCHW Node added: Intel(R) 82801DB LPC Interface Controller - 24C0


[06:27:22] GCHW Node added: Intel(R) 82801DB/DBM USB Universal Host Controller - 24C2


[06:27:22] GCHW Node added: Intel(R) 82801DB/DBM SMBus Controller - 24C3


[06:27:22] GCHW Node added: Intel(R) 82801DB/DBM USB Universal Host Controller - 24C4


[06:27:22] GCHW Node added: SoundMAX Integrated Digital Audio


[06:27:22] GCHW Node added: Intel(R) 82801DB/DBM USB Universal Host Controller - 24C7


[06:27:22] GCHW Node added: Intel(R) 82801DB Ultra ATA Storage Controller - 24CB


[06:27:22] GCHW Node added: Intel(R) 82801DB/DBM USB 2.0 Enhanced Host Controller - 24CD


[06:27:22] GCHW Node added: Intel(R) 82845G/GL/GE/PE/GV/E Processor to I/O Controller - 2560


[06:27:22] GCHW Node added: Intel(R) 82845G/GL/GE/PE/GV Graphics Controller


[06:27:22] GCHW Node added: Primary IDE Channel


[06:27:22] GCHW Node added: Secondary IDE Channel


[06:27:22] GCHW Node added: ACPI Uniprocessor PC


[06:27:22] GCHW Node added: Logical Disk Manager


[06:27:22] GCHW Node added: Volume Manager


[06:27:22] GCHW Node added: AFD


[06:27:22] GCHW Node added: AVG7 Kernel


[06:27:22] GCHW Node added: AVG7 Wrap Driver


[06:27:22] GCHW Node added: AVG7 Resident Driver XP


[06:27:22] GCHW Node added: AVG7 Clean Driver


[06:27:22] GCHW Node added: AVG Network Redirector


[06:27:22] GCHW Node added: Beep


[06:27:22] GCHW Node added: dmboot


[06:27:22] GCHW Node added: dmload


[06:27:22] GCHW Node added: Fips


[06:27:22] GCHW Node added: Generic Packet Classifier


[06:27:22] GCHW Node added: HTTP


[06:27:22] GCHW Node added: IP Traffic Filter Driver


[06:27:22] GCHW Node added: IP Network Address Translator


[06:27:22] GCHW Node added: IPSEC driver


[06:27:22] GCHW Node added: ksecdd


[06:27:22] GCHW Node added: mnmdd


[06:27:22] GCHW Node added: mountmgr


[06:27:22] GCHW Node added: NDIS System Driver


[06:27:22] GCHW Node added: Remote Access NDIS TAPI Driver


[06:27:22] GCHW Node added: NDIS Usermode I/O Protocol


[06:27:22] GCHW Node added: NDProxy


[06:27:22] GCHW Node added: NetBios over Tcpip


[06:27:22] GCHW Node added: Null


[06:27:22] GCHW Node added: PartMgr


[06:27:22] GCHW Node added: ParVdm


[06:27:22] GCHW Node added: PCIIde


[06:27:22] GCHW Node added: Remote Access Auto Connection Driver


[06:27:22] GCHW Node added: RDPCDD


[06:27:22] GCHW Node added: TCP/IP Protocol Driver


[06:27:22] GCHW Node added: VgaSave


[06:27:22] GCHW Node added: VolSnap


[06:27:22] GCHW Node added: Remote Access IP ARP Driver


[06:27:22] GCHW Node added: XDva011


[06:27:22] GCHW Node added: Audio Codecs


[06:27:22] GCHW Node added: Legacy Audio Drivers


[06:27:22] GCHW Node added: Media Control Devices


[06:27:22] GCHW Node added: Legacy Video Capture Devices


[06:27:22] GCHW Node added: Video Codecs


[06:27:22] GCHW Node added: WAN Miniport (L2TP)


[06:27:22] GCHW Node added: WAN Miniport (IP)


[06:27:22] GCHW Node added: WAN Miniport (PPPOE)


[06:27:22] GCHW Node added: WAN Miniport (PPTP)


[06:27:22] GCHW Node added: Packet Scheduler Miniport


[06:27:22] GCHW Node added: Packet Scheduler Miniport


[06:27:22] GCHW Node added: Direct Parallel


[06:27:22] GCHW Node added: Terminal Server Device Redirector


[06:27:22] GCHW Node added: Terminal Server Keyboard Driver


[06:27:22] GCHW Node added: Terminal Server Mouse Driver


[06:27:22] GCHW Node added: Plug and Play Software Device Enumerator


[06:27:22] GCHW Node added: Microcode Update Device


[06:27:22] GCHW Node added: Microsoft System Management BIOS Driver


[06:27:22] GCHW Node added: Generic volume


[06:27:22] GCHW Node added: Microsoft Kernel Acoustic Echo Canceller


[06:27:22] GCHW Node added: Microsoft Kernel System Audio Device


[06:27:22] GCHW Node added: Microsoft Kernel Wave Audio Mixer


[06:27:22] GCHW Node added: Microsoft WINMM WDM Audio Compatibility Driver


[06:27:22] GCHW Node added: USB Root Hub


[06:27:22] GCHW Node added: USB Root Hub


[06:27:22] GCHW Node added: USB Root Hub


[06:27:22] GCHW Node added: USB Root Hub


[06:27:22] GCHW Node added: VideoCAM Messenger


[06:27:22] GCHW Node added: USB Human Interface Device


[06:27:32] GCHW Node added: Microsoft Streaming Quality Manager Proxy


[06:27:49] ExpressUI Running NeroVision Express 3 Version: 3.1.0.25


[06:27:53] DVDEngine DVDENGINE.DLL Version Information: Product Version: 3.1.0.11, File Version: 3.1.0.77, Interface Version: 4.0.0.2


[06:27:53] DVDEngine BEGIN: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:27:53] DVDEngine END: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:27:53] DVDEngine BEGIN: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[06:27:53] DVDEngine END: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[06:28:52] MMTools SourceBuilder: building c:\Documents and Settings\Administrator\My Documents\wheretheheartis.avi audio/0


[06:28:55] MMTools SourceBuilder: --- used source filters ---


[06:28:55] MMTools {E436EBB5-524F-11CE-9F53-0020AF0BA770} - File Source (Async.)


[06:28:55] MMTools {1B544C20-FD0B-11CE-8C63-00AA0044B51E} - AVI Splitter


[06:28:55] MMTools {A753A1EC-973E-4718-AF8E-A3F554D45C44} - AC3Filter


[06:28:55] MMTools SourceBuilder: file type AVI - audio


[06:28:55] MMTools --------------------


[06:28:55] MMTools SourceBuilder: building c:\Documents and Settings\Administrator\My Documents\wheretheheartis.avi video/0


[06:28:58] MMTools SourceBuilder: --- used source filters ---


[06:28:58] MMTools {E436EBB5-524F-11CE-9F53-0020AF0BA770} - File Source (Async.)


[06:28:58] MMTools {1B544C20-FD0B-11CE-8C63-00AA0044B51E} - AVI Splitter


[06:28:58] MMTools {64697678-0000-0010-8000-00AA00389B71} - XviD MPEG-4 Video Decoder


[06:28:58] MMTools SourceBuilder: file type AVI - video


[06:28:58] MMTools --------------------


[06:29:06] DVDEngine BEGIN: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:29:06] DVDEngine END: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:29:06] DVDEngine BEGIN: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[06:29:06] DVDEngine END: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[06:29:07] MMTools SourceBuilder: building cached c:\Documents and Settings\Administrator\My Documents\wheretheheartis.avi video/0


[06:29:16] MMTools SourceBuilder: building c:\Documents and Settings\Administrator\My Documents\wheretheheartispart2.avi audio/0


[06:25:54] MMTools SourceBuilder: --- used source filters ---


[06:25:54] MMTools {E436EBB5-524F-11CE-9F53-0020AF0BA770} - File Source (Async.)


[06:25:54] MMTools {1B544C20-FD0B-11CE-8C63-00AA0044B51E} - AVI Splitter


[06:25:54] MMTools {A753A1EC-973E-4718-AF8E-A3F554D45C44} - AC3Filter


[06:25:54] MMTools SourceBuilder: file type AVI - audio


[06:25:54] MMTools --------------------


[06:25:54] MMTools SourceBuilder: building c:\Documents and Settings\Administrator\My Documents\wheretheheartispart2.avi video/0


[06:25:57] MMTools SourceBuilder: --- used source filters ---


[06:25:57] MMTools {E436EBB5-524F-11CE-9F53-0020AF0BA770} - File Source (Async.)


[06:25:57] MMTools {1B544C20-FD0B-11CE-8C63-00AA0044B51E} - AVI Splitter


[06:25:57] MMTools {64697678-0000-0010-8000-00AA00389B71} - XviD MPEG-4 Video Decoder


[06:25:57] MMTools SourceBuilder: file type AVI - video


[06:25:57] MMTools --------------------


[06:26:04] DVDEngine BEGIN: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:26:04] DVDEngine END: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:26:04] DVDEngine BEGIN: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[06:26:04] DVDEngine END: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[06:26:04] MMTools SourceBuilder: building cached c:\Documents and Settings\Administrator\My Documents\wheretheheartispart2.avi video/0


[06:26:06] DVDEngine BEGIN: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:26:06] DVDEngine END: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:26:06] DVDEngine BEGIN: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[06:26:06] DVDEngine END: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[06:26:06] DVDEngine BEGIN: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:26:06] DVDEngine END: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:26:06] DVDEngine BEGIN: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[06:26:06] DVDEngine END: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[06:26:06] DVDEngine BEGIN: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:26:06] DVDEngine END: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:26:06] DVDEngine BEGIN: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[06:26:06] DVDEngine END: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[06:26:18] DVDEngine BEGIN: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:26:18] DVDEngine END: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:26:18] DVDEngine BEGIN: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[06:26:18] DVDEngine END: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[06:26:55] ExpressUI Burn process started by user.


[06:26:55] ExpressUI Destination: Imation IMW16DL84RAMI


[06:26:55] ExpressUI Directory for temporary files: C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp


[06:26:55] ExpressUI Available hard disk space for temporary files: 11373.773 MB


[06:26:55] ExpressUI ------%26lt;NeroVision Project Information%26gt;--------


[06:26:55] ExpressUI --- Project type: DVD-Video


[06:26:55] ExpressUI --- Project video options ---


[06:26:55] ExpressUI Video mode: NTSC


[06:26:55] ExpressUI Aspect ratio: Automatic


[06:26:55] ExpressUI Quality: Long play (3382 kbps)


[06:26:55] ExpressUI Resolution: 720 x 480 (CCIR-601 D1)


[06:26:55] ExpressUI Sample format: Automatic


[06:26:55] ExpressUI File type: MPEG-2


[06:26:55] ExpressUI Audio format: LPCM


[06:26:55] ExpressUI Encoding mode: Fast Encoding (1-Pass)


[06:26:55] ExpressUI --- Project space information ---


[06:26:55] ExpressUI Used disc space: 4.31 GB


[06:26:55] ExpressUI --- Project contents ---


[06:26:55] ExpressUI Sample format: Automatic


[06:26:55] ExpressUI Audio format: LPCM


[06:26:55] ExpressUI Encoding mode: Fast Encoding (1-Pass)


[06:26:55] ExpressUI Number of titles: 2


[06:26:55] ExpressUI 1. wheretheheartis (Video Title, 0h 55m 57s)


[06:26:55] ExpressUI Video mode: NTSC


[06:26:55] ExpressUI Aspect ratio: 16:9


[06:26:55] ExpressUI Quality: Long play (3382 kbps)


[06:26:55] ExpressUI Resolution: 720 x 480 (CCIR-601 D1)


[06:26:55] ExpressUI Audio SmartEncoding ratio: 0.0 %


[06:26:55] ExpressUI Video SmartEncoding ratio: 0.0 %


[06:26:55] ExpressUI 2. wheretheheartispart2 (Video Title, 1h 04m 04s)


[06:26:55] ExpressUI Video mode: NTSC


[06:26:55] ExpressUI Aspect ratio: 16:9


[06:26:55] ExpressUI Quality: Long play (3382 kbps)


[06:26:55] ExpressUI Resolution: 720 x 480 (CCIR-601 D1)


[06:26:55] ExpressUI Audio SmartEncoding ratio: 0.0 %


[06:26:55] ExpressUI Video SmartEncoding ratio: 0.0 %


[06:26:55] ExpressUI Number of menus: 1


[06:26:55] ExpressUI - Main menu (1 page)


[06:26:55] ExpressUI --------%26lt;End of Project Information%26gt;----------


[06:26:55] ExpressUI ------Recording Parameters------


[06:26:55] ExpressUI Book Type: 1


[06:26:55] ExpressUI Destination Device: Imation IMW16DL84RAMI (Capabilities: 001BC017)


[06:26:55] ExpressUI Recording Flags: 12


[06:26:55] ExpressUI Recording Speed: 0


[06:26:55] ExpressUI Volume Name: where the heart is


[06:26:55] ExpressUI Burn-at-once flag: 0


[06:26:55] ExpressUI --End of recording parameters---


[06:26:59] DVDEngine BEGIN: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:26:59] DVDEngine END: IDVDEngineManagerImpl - CreateDVDVideoSession


[06:26:59] DVDEngine BEGIN: IDVDSessionBaseImpl - RegisterApplicationService


[06:26:59] DVDEngine ..Application service registered...


[06:26:59] DVDEngine END: IDVDSessionBaseImpl - RegisterApplicationService


[06:26:59] DVDEngine BEGIN: IDVDSessionBaseImpl - RegisterCallback


[06:26:59] DVDEngine ..Session callback registered...


[06:26:59] DVDEngine END: IDVDSessionBaseImpl - RegisterCallback


[06:26:59] DVDEngine BEGIN: IDVDVideoSessionImpl - Prepare


[06:26:59] DVDEngine **BEGIN: _DVDVideo - Prepare


[06:26:59] DVDEngine ..VTS_Ns=2...


[06:26:59] DVDEngine ****BEGIN: _DVDVideoBase - Prepare VMG


[06:26:59] DVDEngine ...VMGM_VOBS_exist = true


[06:26:59] DVDEngine ******BEGIN: VMGM_VOBS - Process Create


[06:26:59] DVDEngine ********BEGIN: _VOBS - Process VOB


[06:26:59] DVDEngine **********BEGIN: _VOBS - _M_analyze_cnv_input


[06:26:59] DVDEngine ...Duration 333667


[06:26:59] DVDEngine ..._streamtime_frame_duration is 333667


[06:26:59] DVDEngine ...This is a still stream


[06:26:59] DVDEngine ...Stream 0 is 'Video'


[06:26:59] DVDEngine ...Stream 1 is 'System/Stream'


[06:26:59] DVDEngine **********END: _VOBS - _M_analyze_cnv_input


[06:27:01] NeroVision Analyze video stream


[06:27:01] NeroVision Seg. | frames | weight | volume


[06:27:01] NeroVision ------+---------+--------+--------


[06:27:01] NeroVision 0 | 1 | 1 | 1


[06:27:01] NeroVision ------+---------+--------+--------


[06:27:01] NeroVision total : 1


[06:27:01] NeroVision Estimate Size


[06:27:01] NeroVision +-------+------+--------+----------+----...


[06:27:01] NeroVision |Stream | Seg. | UnComp.| Duration | Size (KB)


[06:27:01] NeroVision +-------+------+--------+----------+----...


[06:27:01] NeroVision | 0 | 0 | 1 | 0.03 | 150


[06:27:01] NeroVision | 1 | 0 | 0 | 0.03 | 0


[06:27:01] NeroVision +-------+------+--------+----------+----...


[06:27:01] NeroVision total data size : 382977 bytes


[06:27:01] NeroVision multiplexed size : 397312 bytes


[06:27:01] DVDEngine ********END: _VOBS - Process VOB


[06:27:01] DVDEngine ******END: VMGM_VOBS - Process Create


[06:27:01] DVDEngine ****END: _DVDVideoBase - Prepare VMG


[06:27:01] DVDEngine ****BEGIN: _DVDVideoBase - Prepare VTS#1


[06:27:01] DVDEngine ...VTSM_VOBS_exist = false


[06:27:01] DVDEngine ******BEGIN: VTSTT_VOBS#1 - Process Create


[06:27:01] DVDEngine ********BEGIN: _VOBS - Process VOB


[06:27:01] DVDEngine **********BEGIN: _VOBS - _M_analyze_cnv_input


[06:27:01] DVDEngine ...Duration 33574908208


[06:27:01] DVDEngine ..._streamtime_frame_duration is 333667


[06:27:01] DVDEngine ...Stream 0 is 'Video'


[06:27:01] DVDEngine ...Stream 1 is 'Audio'


[06:27:01] DVDEngine **********END: _VOBS - _M_analyze_cnv_input


[06:27:01] NeroVision Analyze video stream


[06:27:01] NeroVision Seg. | frames | weight | volume


[06:27:01] NeroVision ------+---------+--------+--------


[06:27:01] NeroVision 0 | 100624 | 1 | 100624


[06:27:01] NeroVision ------+---------+--------+--------


[06:27:01] NeroVision total : 100624


[06:27:01] NeroVision Estimate Size


[06:27:01] NeroVision +-------+------+--------+----------+----...


[06:27:01] NeroVision |Stream | Seg. | UnComp.| Duration | Size (KB)


[06:27:01] NeroVision +-------+------+--------+----------+----...


[06:27:01] NeroVision | 0 | 0 | 1 | 3357.49 | 1386337


[06:27:01] NeroVision | 1 | 0 | 1 | 3357.49 | 644638


[06:27:01] NeroVision +-------+------+--------+----------+----...


[06:27:01] NeroVision total data size : 2079947551 bytes


[06:27:01] NeroVision multiplexed size : 2158379008 bytes


[06:27:01] MMTools SourceBuilder: building cached c:\Documents and Settings\Administrator\My Documents\wheretheheartis.avi video/0


[06:27:06] MMTools SourceBuilder: building cached c:\Documents and Settings\Administrator\My Documents\wheretheheartis.avi audio/0


[06:27:11] DVDEngine ********END: _VOBS - Process VOB


[06:27:11] DVDEngine ******END: VTSTT_VOBS#1 - Process Create


[06:27:11] DVDEngine ****END: _DVDVideoBase - Prepare VTS#1


[06:27:11] DVDEngine ****BEGIN: _DVDVideoBase - Prepare VTS#2


[06:27:11] DVDEngine ...VTSM_VOBS_exist = false


[06:27:11] DVDEngine ******BEGIN: VTSTT_VOBS#2 - Process Create


[06:27:11] DVDEngine ********BEGIN: _VOBS - Process VOB


[06:27:11] DVDEngine **********BEGIN: _VOBS - _M_analyze_cnv_input


[06:27:11] DVDEngine ...Duration 38449783078


[06:27:11] DVDEngine ..._streamtime_frame_duration is 333667


[06:27:11] DVDEngine ...Stream 0 is 'Video'


[06:27:11] DVDEngine ...Stream 1 is 'Audio'


[06:27:11] DVDEngine **********END: _VOBS - _M_analyze_cnv_input


[06:27:11] NeroVision Analyze video stream


[06:27:11] NeroVision Seg. | frames | weight | volume


[06:27:11] NeroVision ------+---------+--------+--------


[06:27:11] NeroVision 0 | 115234 | 1 | 115234


[06:27:11] NeroVision ------+---------+--------+--------


[06:27:11] NeroVision total : 115234


[06:27:11] NeroVision Estimate Size


[06:27:11] NeroVision +-------+------+--------+----------+----...


[06:27:11] NeroVision |Stream | Seg. | UnComp.| Duration | Size (KB)


[06:27:11] NeroVision +-------+------+--------+----------+----...


[06:27:11] NeroVision | 0 | 0 | 1 | 3844.98 | 1587592


[06:27:11] NeroVision | 1 | 0 | 1 | 3844.98 | 738236


[06:27:11] NeroVision +-------+------+--------+----------+----...


[06:27:11] NeroVision total data size : 2381876826 bytes


[06:27:11] NeroVision multiplexed size : 2471696384 bytes


[06:27:11] MMTools SourceBuilder: building cached c:\Documents and Settings\Administrator\My Documents\wheretheheartispart2.avi video/0


[06:27:15] MMTools SourceBuilder: building cached c:\Documents and Settings\Administrator\My Documents\wheretheheartispart2.avi audio/0


[06:27:15] DVDEngine ********END: _VOBS - Process VOB


[06:27:15] DVDEngine ******END: VTSTT_VOBS#2 - Process Create


[06:27:15] DVDEngine ****END: _DVDVideoBase - Prepare VTS#2


[06:27:15] DVDEngine **END: _DVDVideo - Prepare


[06:27:15] DVDEngine ..Estimated size=4.31 GB


[06:27:15] DVDEngine ..Estimated duration=2 hour 26 min 25 sec


[06:27:15] DVDEngine END: IDVDVideoSessionImpl - Prepare


[06:27:15] DVDEngine BEGIN: IDVDVideoSessionImpl - CreateVOBs


[06:27:15] DVDEngine **BEGIN: _DVDVideo - Create


[06:27:15] DVDEngine ****BEGIN: Create - VMGM_VOBS


[06:27:15] DVDEngine ******BEGIN: VMGM_VOBS - Process Create


[06:27:15] DVDEngine ********BEGIN: _VOBS - Process VOB


[06:27:15] DVDEngine **********BEGIN: _VOBS - _M_analyze_cnv_input


[06:27:15] DVDEngine ...Duration 333667


[06:27:15] DVDEngine ..._streamtime_frame_duration is 333667


[06:27:15] DVDEngine ...This is a still stream


[06:27:15] DVDEngine ...Stream 0 is 'Video'


[06:27:15] DVDEngine ...Stream 1 is 'System/Stream'


[06:27:15] DVDEngine **********END: _VOBS - _M_analyze_cnv_input


[06:27:15] NeroVision Analyze video stream


[06:27:15] NeroVision Seg. | frames | weight | volume


[06:27:15] NeroVision ------+---------+--------+--------


[06:27:15] NeroVision 0 | 1 | 1 | 1


[06:27:15] NeroVision ------+---------+--------+--------


[06:27:15] NeroVision total : 1


[06:27:15] DVDEngine **********BEGIN: IDVDEngineManagerImpl - CreateSubpictureSource


[06:27:15] DVDEngine **********END: IDVDEngineManagerImpl - CreateSubpictureSource


[06:27:15] DVDEngine **********BEGIN: CSPU::Process()


[06:27:15] DVDEngine ...'Decoding SubPicture No.' is '0'


[06:27:15] DVDEngine ..._nLines == 480


[06:27:15] DVDEngine ...Found 'bottom half' in the bottom field at bit 11368, addr. is 1421 (241)


[06:27:15] DVDEngine ...Detected 'top half' at 1, addr. is 2


[06:27:15] DVDEngine ...Detected 'bottom half' at 1, addr. is 1421


[06:27:15] DVDEngine ...Lines processed: 480


[06:27:15] DVDEngine ...processed 2 packs


[06:27:15] DVDEngine **********END: CSPU::Process()


[06:27:16] DVDEngine ...New VOB 1


[06:27:16] DVDEngine ..+VOB#1: VOB_IDN=1, SA=0, VOB_V_S_PTM=36332


[06:27:16] DVDEngine ...New CELL 1


[06:27:16] DVDEngine ....+Cell#1: C_IDN=1


[06:27:16] DVDEngine BTNGR1_DSP_TY == 86711678


[06:27:16] DVDEngine ....|Cell#1: C_IDN=1, [0;76], VOBU_Ns=1, C_PBTM=0s.12


[06:27:16] DVDEngine ..|VOB#1: VOB_IDN=1, [0;76], C_Ns=1, VOB_V_S_PTM=36332, VOB_V_E_PTM=72368


[06:27:16] DVDEngine ********END: _VOBS - Process VOB


[06:27:16] DVDEngine ********BEGIN: VMGM_VOBS - INFORMATION after Create


[06:27:16] DVDEngine ----------------------------------------...


[06:27:16] DVDEngine General information:


[06:27:16] DVDEngine ..size=77 (154 KB)


[06:27:16] DVDEngine ..capacity=77 (154 KB)


[06:27:16] DVDEngine ..max_capacity=524287 (1.00 GB)


[06:27:16] DVDEngine ..VOB_Ns=1


[06:27:16] DVDEngine ..C_Ns=1


[06:27:16] DVDEngine ..VOBU_Ns=1


[06:27:16] DVDEngine VOB information:


[06:27:16] DVDEngine ...VOB#1: VOB_IDN=1, [0;76], C_Ns=1, VOB_V_S_PTM=36332, VOB_V_E_PTM=72368


[06:27:16] DVDEngine .....Cell#1: C_IDN=1, [0;76], VOBU_Ns=1, C_PBTM=0s.12


[06:27:16] DVDEngine ----------------------------------------...


[06:27:16] DVDEngine ********END: VMGM_VOBS - INFORMATION after Create


[06:27:16] DVDEngine ******END: VMGM_VOBS - Process Create


[06:27:16] DVDEngine ******BEGIN: VMGM_VOBS - Verify


[06:27:16] DVDEngine ******END: VMGM_VOBS - Verify


[06:27:16] DVDEngine ..VMGM_VOBS: size=154 KB (157,696 bytes)


[06:27:16] DVDEngine ****END: Create - VMGM_VOBS


[06:27:16] DVDEngine ****BEGIN: Create - VTSTT_VOBS#1


[06:27:16] DVDEngine ******BEGIN: VTSTT_VOBS#1 - Process Create


[06:27:16] DVDEngine ********BEGIN: _VOBS - Process VOB


[06:27:16] DVDEngine **********BEGIN: _VOBS - _M_analyze_cnv_input


[06:27:16] DVDEngine ...Duration 33574908208


[06:27:16] DVDEngine ..._streamtime_frame_duration is 333667


[06:27:16] DVDEngine ...Stream 0 is 'Video'


[06:27:16] DVDEngine ...Stream 1 is 'Audio'


[06:27:16] DVDEngine **********END: _VOBS - _M_analyze_cnv_input


[06:27:16] NeroVision Analyze video stream


[06:27:16] NeroVision Seg. | frames | weight | volume


[06:27:16] NeroVision ------+---------+--------+--------


[06:27:16] NeroVision 0 | 100624 | 1 | 100624


[06:27:16] NeroVision ------+---------+--------+--------


[06:27:16] NeroVision total : 100624


[06:27:16] NeroVision Set Preview Channel


[06:27:16] NeroVision Set Preview Channel


[06:27:16] MMTools SourceBuilder: building cached c:\Documents and Settings\Administrator\My Documents\wheretheheartis.avi video/0


[06:27:20] MMTools SourceBuilder: building cached c:\Documents and Settings\Administrator\My Documents\wheretheheartis.avi audio/0


[06:27:20] DVDEngine ...New VOB 1


[06:27:20] DVDEngine ..+VOB#1: VOB_IDN=1, SA=0, VOB_V_S_PTM=25942


[06:27:20] DVDEngine ...New CELL 1


[06:27:20] DVDEngine ....+Cell#1: C_IDN=1


[06:30:43] GCHW Node removed: Microsoft Streaming Quality Manager Proxy


[06:33:15] GCHW Node removed: Microsoft Kernel Acoustic Echo Canceller


[06:45:05] GCHW Node removed: Microsoft Kernel Wave Audio Mixer


[06:46:37] GCHW Node added: Microsoft Kernel Wave Audio Mixer


[07:27:07] GCHW Node removed: Microsoft Kernel Wave Audio Mixer


[07:29:11] GCHW Node added: Microsoft Kernel Wave Audio Mixer


[08:04:22] GCHW Node removed: Microsoft Kernel Wave Audio Mixer


[08:09:46] GCHW Node added: Microsoft Kernel Wave Audio Mixer


[08:19:38] GCHW Node removed: Microsoft Kernel Wave Audio Mixer


[08:21:00] DVDEngine ....|Cell#1: C_IDN=1, [0;1035377], VOBU_Ns=6708, C_PBTM=55m54s.04


[08:21:00] DVDEngine ..|VOB#1: VOB_IDN=1, [0;1035377], C_Ns=1, VOB_V_S_PTM=25942, VOB_V_E_PTM=302199814


[08:22:04] DVDEngine ********END: _VOBS - Process VOB


[08:22:04] DVDEngine ********BEGIN: VTSTT_VOBS#1 - INFORMATION after Create


[08:22:04] DVDEngine ----------------------------------------...


[08:22:04] DVDEngine General information:


[08:22:04] DVDEngine ..size=1035378 (1.97 GB)


[08:22:04] DVDEngine ..capacity=1035378 (1.97 GB)


[08:22:04] DVDEngine ..VOB_Ns=1


[08:22:04] DVDEngine ..C_Ns=1


[08:22:04] DVDEngine ..VOBU_Ns=6708


[08:22:04] DVDEngine VOB information:


[08:22:04] DVDEngine ...VOB#1: VOB_IDN=1, [0;1035377], C_Ns=1, VOB_V_S_PTM=25942, VOB_V_E_PTM=302199814


[08:22:04] DVDEngine .....Cell#1: C_IDN=1, [0;1035377], VOBU_Ns=6708, C_PBTM=55m54s.04


[08:22:04] DVDEngine ----------------------------------------...


[08:22:04] DVDEngine ********END: VTSTT_VOBS#1 - INFORMATION after Create


[08:22:04] DVDEngine ******END: VTSTT_VOBS#1 - Process Create


[08:22:04] DVDEngine ******BEGIN: VTSTT_VOBS#1 - Verify


[08:22:05] DVDEngine ******END: VTSTT_VOBS#1 - Verify


[08:22:05] DVDEngine ..VTSTT_VOBS: size=1.97 GB (2,120,454,144 bytes)


[08:22:05] DVDEngine ****END: Create - VTSTT_VOBS#1


[08:22:05] DVDEngine ****BEGIN: Create - VTSTT_VOBS#2


[08:22:05] DVDEngine ******BEGIN: VTSTT_VOBS#2 - Process Create


[08:22:05] DVDEngine ********BEGIN: _VOBS - Process VOB


[08:22:05] DVDEngine **********BEGIN: _VOBS - _M_analyze_cnv_input


[08:22:05] DVDEngine ...Duration 38449783078


[08:22:05] DVDEngine ..._streamtime_frame_duration is 333667


[08:22:05] DVDEngine ...Stream 0 is 'Video'


[08:22:05] DVDEngine ...Stream 1 is 'Audio'


[08:22:05] DVDEngine **********END: _VOBS - _M_analyze_cnv_input


[08:22:06] NeroVision Analyze video stream


[08:22:06] NeroVision Seg. | frames | weight | volume


[08:22:06] NeroVision ------+---------+--------+--------


[08:22:06] NeroVision 0 | 115234 | 1 | 115234


[08:22:06] NeroVision ------+---------+--------+--------


[08:22:06] NeroVision total : 115234


[08:22:06] NeroVision Set Preview Channel


[08:22:06] NeroVision Set Preview Channel


[08:22:08] MMTools SourceBuilder: building cached c:\Documents and Settings\Administrator\My Documents\wheretheheartispart2.avi video/0


[08:22:14] MMTools SourceBuilder: building cached c:\Documents and Settings\Administrator\My Documents\wheretheheartispart2.avi audio/0


[08:22:16] DVDEngine ...New VOB 1


[08:22:16] DVDEngine ..+VOB#1: VOB_IDN=1, SA=0, VOB_V_S_PTM=27698


[08:22:16] DVDEngine ...New CELL 1


[08:22:16] DVDEngine ....+Cell#1: C_IDN=1


[09:27:50] GCHW Node added: Microsoft Kernel Wave Audio Mixer


[09:32:32] GCHW Node removed: Microsoft Kernel Wave Audio Mixer


[09:40:16] DVDEngine ....|Cell#1: C_IDN=1, [0;1183854], VOBU_Ns=7682, C_PBTM=1h04m01s.04


[09:40:19] DVDEngine ..|VOB#1: VOB_IDN=1, [0;1183854], C_Ns=1, VOB_V_S_PTM=27698, VOB_V_E_PTM=346075400


[09:41:17] DVDEngine ********END: _VOBS - Process VOB


[09:41:17] DVDEngine ********BEGIN: VTSTT_VOBS#2 - INFORMATION after Create


[09:41:17] DVDEngine ----------------------------------------...


[09:41:17] DVDEngine General information:


[09:41:17] DVDEngine ..size=1183855 (2.26 GB)


[09:41:17] DVDEngine ..capacity=1183855 (2.26 GB)


[09:41:17] DVDEngine ..VOB_Ns=1


[09:41:17] DVDEngine ..C_Ns=1


[09:41:17] DVDEngine ..VOBU_Ns=7682


[09:41:17] DVDEngine VOB information:


[09:41:17] DVDEngine ...VOB#1: VOB_IDN=1, [0;1183854], C_Ns=1, VOB_V_S_PTM=27698, VOB_V_E_PTM=346075400


[09:41:17] DVDEngine .....Cell#1: C_IDN=1, [0;1183854], VOBU_Ns=7682, C_PBTM=1h04m01s.04


[09:41:17] DVDEngine ----------------------------------------...


[09:41:17] DVDEngine ********END: VTSTT_VOBS#2 - INFORMATION after Create


[09:41:17] DVDEngine ******END: VTSTT_VOBS#2 - Process Create


[09:41:17] DVDEngine ******BEGIN: VTSTT_VOBS#2 - Verify


[09:41:19] DVDEngine ******END: VTSTT_VOBS#2 - Verify


[09:41:19] DVDEngine ..VTSTT_VOBS: size=2.26 GB (2,424,535,040 bytes)


[09:41:19] DVDEngine ****END: Create - VTSTT_VOBS#2


[09:41:20] DVDEngine **END: _DVDVideo - Create


[09:41:20] DVDEngine END: IDVDVideoSessionImpl - CreateVOBs


[09:41:20] DVDEngine BEGIN: IDVDVideoSessionImpl - CreateDesc


[09:41:20] DVDEngine **BEGIN: _DVDVideo - Create


[09:41:20] DVDEngine ****BEGIN: Create - VTSI#1


[09:41:20] DVDEngine ******BEGIN: VTSI#1 - Create


[09:41:20] DVDEngine ...VTSM_VOBS exists = false


[09:41:20] DVDEngine ...VTSM_PGCI_UT exists = true


[09:41:20] DVDEngine ...VTS_TMAPT exists = true


[09:41:20] DVDEngine ...VTSI_MAT created...


[09:41:20] DVDEngine ...VTS_PTT_SRPT created...


[09:41:20] DVDEngine ...VTS_PGCIT created...


[09:41:21] DVDEngine ...VTS_C_ADT created...


[09:41:23] DVDEngine ...VTS_VOBU_ADMAP created...


[09:41:23] DVDEngine ...VTSM_PGCI_UT created...


[09:41:23] DVDEngine ...VTS_TMAPT created...


[09:41:23] DVDEngine ******END: VTSI#1 - Create


[09:41:23] DVDEngine ******BEGIN: VTSI#1 - Verify


[09:41:23] DVDEngine ******END: VTSI#1 - Verify


[09:41:23] DVDEngine ..VTSI: size=46.0 KB (47,104 bytes)


[09:41:23] DVDEngine ****END: Create - VTSI#1


[09:41:23] DVDEngine ****BEGIN: Create - VTSI#2


[09:41:23] DVDEngine ******BEGIN: VTSI#2 - Create


[09:41:23] DVDEngine ...VTSM_VOBS exists = false


[09:41:23] DVDEngine ...VTSM_PGCI_UT exists = true


[09:41:23] DVDEngine ...VTS_TMAPT exists = true


[09:41:23] DVDEngine ...VTSI_MAT created...


[09:41:23] DVDEngine ...VTS_PTT_SRPT created...


[09:41:23] DVDEngine ...VTS_PGCIT created...


[09:41:23] DVDEngine ...VTS_C_ADT created...


[09:41:23] DVDEngine ...VTS_VOBU_ADMAP created...


[09:41:23] DVDEngine ...VTSM_PGCI_UT created...


[09:41:23] DVDEngine ...VTS_TMAPT created...


[09:41:23] DVDEngine ******END: VTSI#2 - Create


[09:41:23] DVDEngine ******BEGIN: VTSI#2 - Verify


[09:41:23] DVDEngine ******END: VTSI#2 - Verify


[09:41:23] DVDEngine ..VTSI: size=50.0 KB (51,200 bytes)


[09:41:23] DVDEngine ****END: Create - VTSI#2


[09:41:23] DVDEngine ****BEGIN: Create - VMGI


[09:41:23] DVDEngine ******BEGIN: VMGI - Create


[09:41:23] DVDEngine ...VMGM_VOBS exists = true


[09:41:23] DVDEngine ...VMGM_PGCI_UT exists = true


[09:41:23] DVDEngine ...PTL_MAIT exists = false


[09:41:23] DVDEngine ...TXTDT_MG exists = false


[09:41:23] DVDEngine ...FP_PGC_exist = true...


[09:41:23] DVDEngine ...FP_PGC2_exist = false...


[09:41:23] DVDEngine ...VMGI_MAT created...


[09:41:23] DVDEngine ...TT_SRPT created...


[09:41:24] DVDEngine ...VTS_ATRT created...


[09:41:24] DVDEngine ...VMGM_PGCI_UT created...


[09:41:24] DVDEngine ...VMGM_C_ADT created...


[09:41:24] DVDEngine ...VMGM_VOBU_ADMAP created...


[09:41:24] DVDEngine ******END: VMGI - Create


[09:41:24] DVDEngine ******BEGIN: VMGI - Verify


[09:41:24] DVDEngine ******END: VMGI - Verify


[09:41:24] DVDEngine ..VMGI: size=12.0 KB (12,288 bytes)


[09:41:24] DVDEngine ****END: Create - VMGI


[09:41:24] DVDEngine **END: _DVDVideo - Create


[09:41:24] DVDEngine END: IDVDVideoSessionImpl - CreateDesc


[09:41:24] DVDEngine BEGIN: IDVDSessionBaseImpl - GetDiscCaps


[09:41:24] DVDEngine ..Caps=DSCCAP_VLMNM_UDF | DSCCAP_VLMNM_ISO9660


[09:41:24] DVDEngine END: IDVDSessionBaseImpl - GetDiscCaps


[09:41:25] DVDEngine BEGIN: IDVDSessionBaseImpl - SetLabel


[09:41:25] DVDEngine Volume name (ISO9660)="__________________"


[09:41:25] DVDEngine END: IDVDSessionBaseImpl - SetLabel


[09:41:25] DVDEngine BEGIN: IDVDSessionBaseImpl - SetLabel


[09:41:25] DVDEngine Volume name (UDF)="where the heart is"


[09:41:25] DVDEngine END: IDVDSessionBaseImpl - SetLabel


[09:41:25] DVDEngine BEGIN: IDVDVideoSessionImpl - GetDiscContent


[09:41:25] DVDEngine **BEGIN: _DVDVideo - Fill FileSystemDescContainer


[09:41:26] DVDEngine ..File: 'VIDEO_TS\VIDEO_TS.IFO' (VMGI), location={undefined}, size=12.0 KB (12,288 bytes)


[09:41:26] DVDEngine ..File: 'VIDEO_TS\VIDEO_TS.VOB' (VMGM_VOBS), location={undefined}, size=154 KB (157,696 bytes)


[09:41:26] DVDEngine ..File: 'VIDEO_TS\VIDEO_TS.BUP' (VMGI), location={undefined}, size=12.0 KB (12,288 bytes)


[09:41:26] DVDEngine ..File: 'VIDEO_TS\VTS_01_0.IFO' (VTSI), location={undefined}, size=46.0 KB (47,104 bytes)


[09:41:26] DVDEngine ..File: 'VIDEO_TS\VTS_01_1.VOB' (VTSTT_VOBS), location={undefined}, size=1.00 GB (1,073,739,776 bytes)


[09:41:26] DVDEngine ..File: 'VIDEO_TS\VTS_01_2.VOB' (VTSTT_VOBS), location={undefined}, size=0.97 GB (1,046,714,368 bytes)


[09:41:26] DVDEngine ..File: 'VIDEO_TS\VTS_01_0.BUP' (VTSI), location={undefined}, size=46.0 KB (47,104 bytes)


[09:41:26] DVDEngine ..File: 'VIDEO_TS\VTS_02_0.IFO' (VTSI), location={undefined}, size=50.0 KB (51,200 bytes)


[09:41:26] DVDEngine ..File: 'VIDEO_TS\VTS_02_1.VOB' (VTSTT_VOBS), location={undefined}, size=1.00 GB (1,073,739,776 bytes)


[09:41:26] DVDEngine ..File: 'VIDEO_TS\VTS_02_2.VOB' (VTSTT_VOBS), location={undefined}, size=1.00 GB (1,073,739,776 bytes)


[09:41:26] DVDEngine ..File: 'VIDEO_TS\VTS_02_3.VOB' (VTSTT_VOBS), location={undefined}, size=264 MB (277,055,488 bytes)


[09:41:26] DVDEngine ..File: 'VIDEO_TS\VTS_02_0.BUP' (VTSI), location={undefined}, size=50.0 KB (51,200 bytes)


[09:41:26] DVDEngine **END: _DVDVideo - Fill FileSystemDescContainer


[09:41:26] DVDEngine END: IDVDVideoSessionImpl - GetDiscContent


[09:41:26] DVDEngine BEGIN: IDVDSessionBaseImpl - RegisterCallback


[09:41:26] DVDEngine ..Session callback unregistered...


[09:41:26] DVDEngine END: IDVDSessionBaseImpl - RegisterCallback


[09:41:31] NeroAPI DVD-Video files sorted


[10:09:44] NeroAPI Caching of files started


[10:09:45] NeroAPI Caching of files completed


[10:09:45] NeroAPI Burn process started at 16x (22,160 KB/s)


[10:09:46] DVDEngine BEGIN: VMGM_VOBS - Write


[10:09:46] DVDEngine ...RBP=0, count=157,696 bytes


[10:09:46] DVDEngine ...succeeded


[10:09:46] DVDEngine END: VMGM_VOBS - Write


[10:09:46] DVDEngine BEGIN: VTSTT_VOBS#1 - Write


[10:09:46] DVDEngine ...RBP=0, count=1,073,739,776 bytes


[10:12:53] NeroAPI Write error


[10:12:53] NeroAPI D: Imation IMW16DL84RAMI


[10:12:53] NeroAPI Burn process failed at 16x (22,160 KB/s)


[10:14:28] DVDEngine ...succeeded


[10:14:28] DVDEngine END: VTSTT_VOBS#1 - Write


[10:14:28] DVDEngine BEGIN: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[10:14:35] DVDEngine END: IDVDVideoSessionImpl - ~IDVDVideoSessionImpl


[10:14:36] NeroVision Process information:


[10:14:36] NeroVision --------------------


[10:14:36] NeroVision Address Version Module name


[10:14:36] NeroVision ----------------------------------------...


[10:14:36] NeroVision 0x00330000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCLib.dll


[10:14:36] NeroVision 0x003C0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GDIPainter.dll


[10:14:36] NeroVision 0x003D0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\AMCLib.dll


[10:14:36] NeroVision 0x003E0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\AMCDOM.dll


[10:14:36] NeroVision 0x00400000 3.1.0.25 C:\Program Files\Ahead\NeroVision\NeroVision.exe


[10:14:36] NeroVision 0x00470000 3.1.0.25 C:\Program Files\Ahead\NeroVision\AMCUIBase.dll


[10:14:36] NeroVision 0x006A0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCCore.dll


[10:14:36] NeroVision 0x00720000 3.1.0.25 C:\Program Files\Ahead\NeroVision\AMCDocBase.dll


[10:14:36] NeroVision 0x008D0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\MMTools.dll


[10:14:36] NeroVision 0x011E0000 7.0.46.0 C:\WINDOWS\system32\ImagXpr7.dll


[10:14:36] NeroVision 0x01260000 7.0.46.0 C:\WINDOWS\system32\ImagX7.dll


[10:14:36] NeroVision 0x014A0000 7.0.476.0 C:\WINDOWS\system32\ImagXR7.dll


[10:14:36] NeroVision 0x01680000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCFX.DLL


[10:14:36] NeroVision 0x019A0000 1.1.0.865 C:\Program Files\Ahead\NeroVision\NeVideoFX.dll


[10:14:36] NeroVision 0x01C10000 1.0.0.3 C:\Program Files\Ahead\NeroVision\NeVideoFX.bitmaps


[10:14:36] NeroVision 0x023D0000 1.0.2.0 C:\Program Files\Ahead\NeroVision\NeVideoFXW.dll


[10:14:36] NeroVision 0x024F0000 1.3.6.2320 C:\Program Files\Common Files\Ahead\Lib\AdvrCntr.dll


[10:14:36] NeroVision 0x02D20000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCHW.DLL


[10:14:36] NeroVision 0x036D0000 1.0.1.4 C:\WINDOWS\system32\dsnpstd.ax


[10:14:36] NeroVision 0x036E0000 6.6.1.15 C:\Program Files\Ahead\Nero\NeroAPI.dll


[10:14:36] NeroVision 0x04310000 6.6.1.15 C:\Program Files\Ahead\Nero\NeroErr.dll


[10:14:36] NeroVision 0x04360000 2.0.3.0 C:\Program Files\Ahead\Nero\NeRSDB.dll


[10:14:36] NeroVision 0x044C0000 1.0.0.17 C:\Program Files\Common Files\Ahead\Lib\DriveLocker.dll


[10:14:36] NeroVision 0x04A70000 3.1.0.25 C:\Program Files\Ahead\NeroVision\ExpressUI.dll


[10:14:36] NeroVision 0x04E60000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCHWCfg.dll


[10:14:36] NeroVision 0x04E80000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCLocale.dll


[10:14:36] NeroVision 0x04E90000 3.1.0.25 C:\Program Files\Ahead\NeroVision\ExpressDoc.dll


[10:14:36] NeroVision 0x05000000 6.6.1.15 C:\Program Files\Ahead\Nero\CDROM.DLL


[10:14:36] NeroVision 0x05A90000 3.1.0.25 C:\Program Files\Ahead\NeroVision\DVDUI.dll


[10:14:36] NeroVision 0x05AC0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\DVDDoc.dll


[10:14:36] NeroVision 0x05B60000 3.1.0.11 C:\Program Files\Ahead\NeroVision\DVDEngine.dll


[10:14:36] NeroVision 0x05CC0000 2.0.0.39 C:\Program Files\Ahead\NeroVision\NeroMediaCon.DLL


[10:14:36] NeroVision 0x063B0000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCCapture.ax


[10:14:36] NeroVision 0x06400000 0.0.0.28 C:\WINDOWS\system32\DivXMedia.ax


[10:14:36] NeroVision 0x06590000 1.0.0.2 C:\Program Files\K-Lite Codec Pack\filters\MP4Splitter.ax


[10:14:36] NeroVision 0x06630000 3.1.0.25 C:\Program Files\Ahead\NeroVision\GCFilter.ax


[10:14:36] NeroVision 0x066E0000 0.0.0.0 C:\Program Files\K-Lite Codec Pack\filters\xvid.ax


[10:14:36] NeroVision 0x068A0000 6.7.0.1 C:\WINDOWS\system32\divxdec.ax


[10:14:36] NeroVision 0x06990000 1.0.0.4 C:\Program Files\Common Files\Ahead\DSFilter\NeVideoAnalyzer.ax


[10:14:36] NeroVision 0x074E0000 2.0.2.61 C:\Program Files\Common Files\Ahead\DSFilter\NeVideo.ax


[10:14:36] NeroVision 0x077A0000 1.0.1.0 C:\Program Files\K-Lite Codec Pack\filters\ac3filter.ax


[10:14:36] NeroVision 0x07B20000 1.1.0.1 C:\Program Files\Common Files\Ahead\DSFilter\NeResize.ax


[10:14:36] NeroVision 0x08540000 1.0.0.79 C:\Program Files\Common Files\Ahead\DSFilter\NeroVideoProc.ax


[10:14:36] NeroVision 0x08570000 2.0.0.5 C:\Program Files\Common Files\Ahead\DSFilter\NeroFormatConv.ax


[10:14:36] NeroVision 0x10000000 6.6.0.0 C:\Program Files\Ahead\NeroVision\HDCC.dll


[10:14:36] NeroVision 0x15000000 6.6.1.15 C:\Program Files\Ahead\Nero\image.dll


[10:14:36] NeroVision 0x19000000 6.6.1.15 C:\Program Files\Ahead\Nero\MMC.DLL


[10:14:36] NeroVision 0x1C000000 4.3.23.2 C:\Program Files\Ahead\InCD\incdshx.dll


[10:14:36] NeroVision 0x20000000 5.1.2600.2180 C:\WINDOWS\system32\xpsp2res.dll


[10:14:36] NeroVision 0x22000000 6.6.1.15 C:\Program Files\Ahead\Nero\newtrf.dll


[10:14:36] NeroVision 0x4EC50000 5.1.3102.2180 C:\WINDOWS\WinSxS\x86_Microsoft.Windows....


[10:14:36] NeroVision 0x4F680000 5.3.2600.2180 C:\WINDOWS\system32\dxdiagn.dll


[10:14:36] NeroVision 0x58010000 5.3.2600.2180 C:\WINDOWS\system32\kswdmcap.ax


[10:14:36] NeroVision 0x5AD70000 6.0.2900.2180 C:\WINDOWS\system32\UxTheme.dll


[10:14:36] NeroVision 0x5B860000 5.1.2600.2976 C:\WINDOWS\system32\NETAPI32.dll


[10:14:36] NeroVision 0x5CAD0000 6.0.2900.2180 C:\WINDOWS\system32\shmedia.dll


[10:14:36] NeroVision 0x5DF80000 6.5.2600.2180 C:\WINDOWS\system32\qdvd.dll


[10:14:36] NeroVision 0x5E030000 5.3.2600.2180 C:\WINDOWS\system32\ksproxy.ax


[10:14:36] NeroVision 0x5EDD0000 5.1.2600.2180 C:\WINDOWS\system32\OLEPRO32.DLL


[10:14:36] NeroVision 0x60CA0000 6.5.2600.2180 C:\WINDOWS\system32\qedit.dll


[10:14:36] NeroVision 0x69B10000 4.20.9848.0 c:\WINDOWS\system32\msxml4.dll


[10:14:36] NeroVision 0x71AA0000 5.1.2600.2180 C:\WINDOWS\system32\WS2HELP.dll


[10:14:36] NeroVision 0x71AB0000 5.1.2600.2180 C:\WINDOWS\system32\WS2_32.dll


[10:14:36] NeroVision 0x71AD0000 5.1.2600.2180 C:\WINDOWS\system32\wsock32.dll


[10:14:36] NeroVision 0x71BF0000 5.1.2600.2180 C:\WINDOWS\system32\SAMLIB.dll


[10:14:36] NeroVision 0x72D10000 5.1.2600.0 C:\WINDOWS\system32\msacm32.drv


[10:14:36] NeroVision 0x72D20000 5.1.2600.2180 C:\WINDOWS\system32\wdmaud.drv


[10:14:36] NeroVision 0x73000000 5.1.2600.2180 C:\WINDOWS\system32\WINSPOOL.DRV


[10:14:36] NeroVision 0x732E0000 5.1.2600.0 C:\WINDOWS\system32\RICHED32.DLL


[10:14:36] NeroVision 0x736B0000 6.5.2600.2180 C:\WINDOWS\system32\msdmo.dll


[10:14:36] NeroVision 0x73760000 5.3.2600.2180 C:\WINDOWS\system32\DDRAW.dll


[10:14:36] NeroVision 0x73B50000 5.1.2600.2180 C:\WINDOWS\system32\AVIFIL32.dll


[10:14:36] NeroVision 0x73BC0000 5.1.2600.2180 C:\WINDOWS\system32\DCIMAN32.dll


[10:14:36] NeroVision 0x73DD0000 6.0.4.0 C:\Program Files\Ahead\NeroVision\MFC42.DLL


[10:14:36] NeroVision 0x73EE0000 5.3.2600.2180 C:\WINDOWS\system32\ksuser.dll


[10:14:36] NeroVision 0x73F10000 5.3.2600.2180 C:\WINDOWS\system32\dsound.dll


[10:14:36] NeroVision 0x74720000 5.1.2600.2180 C:\WINDOWS\system32\MSCTF.dll


[10:14:36] NeroVision 0x74810000 6.5.2600.2749 C:\WINDOWS\system32\QUARTZ.dll


[10:14:36] NeroVision 0x74AD0000 6.0.2900.2180 C:\WINDOWS\system32\POWRPROF.dll


[10:14:36] NeroVision 0x74E30000 5.0.0.0 C:\WINDOWS\system32\RICHED20.dll


[10:14:36] NeroVision 0x74ED0000 5.1.2600.2180 C:\WINDOWS\system32\wbem\wbemsvc.dll


[10:14:36] NeroVision 0x74EF0000 5.1.2600.2180 C:\WINDOWS\system32\wbem\wbemprox.dll


[10:14:36] NeroVision 0x75290000 5.1.2600.2180 C:\WINDOWS\system32\wbem\wbemcomn.dll


[10:14:36] NeroVision 0x754D0000 5.131.2600.2180 C:\WINDOWS\system32\CRYPTUI.dll


[10:14:36] NeroVision 0x755C0000 5.1.2600.2180 C:\WINDOWS\system32\msctfime.ime


[10:14:36] NeroVision 0x75690000 5.1.2600.2180 C:\WINDOWS\system32\wbem\fastprox.dll


[10:14:36] NeroVision 0x75A70000 5.1.2600.2180 C:\WINDOWS\system32\MSVFW32.dll


[10:14:36] NeroVision 0x75E90000 5.1.2600.3019 C:\WINDOWS\system32\SXS.DLL


[10:14:36] NeroVision 0x75F40000 6.5.2600.2180 C:\WINDOWS\system32\devenum.dll


[10:14:36] NeroVision 0x75F80000 6.0.2900.3199 C:\WINDOWS\system32\browseui.dll


[10:14:36] NeroVision 0x76380000 5.1.2600.2180 C:\WINDOWS\system32\MSIMG32.dll


[10:14:36] NeroVision 0x76390000 5.1.2600.2180 C:\WINDOWS\system32\IMM32.DLL


[10:14:36] NeroVision 0x763B0000 6.0.2900.2180 C:\WINDOWS\system32\comdlg32.dll


[10:14:36] NeroVision 0x76600000 5.1.2600.2180 C:\WINDOWS\System32\CSCDLL.dll


[10:14:36] NeroVision 0x767A0000 5.1.2600.2180 C:\WINDOWS\system32\NTDSAPI.dll


[10:14:36] NeroVision 0x76990000 5.1.2600.2180 C:\WINDOWS\system32\ntshrui.dll


[10:14:36] NeroVision 0x769C0000 5.1.2600.2180 C:\WINDOWS\system32\USERENV.dll


[10:14:36] NeroVision 0x76B20000 6.5.0.2284 C:\WINDOWS\system32\ATL.DLL


[10:14:36] NeroVision 0x76B40000 5.1.2600.2180 C:\WINDOWS\system32\WINMM.dll


[10:14:36] NeroVision 0x76C30000 5.131.2600.2180 C:\WINDOWS\system32\WINTRUST.dll


[10:14:36] NeroVision 0x76C90000 5.1.2600.2180 C:\WINDOWS\system32\IMAGEHLP.dll


[10:14:36] NeroVision 0x76F20000 5.1.2600.2938 C:\WINDOWS\system32\DNSAPI.dll


[10:14:36] NeroVision 0x76F60000 5.1.2600.2180 C:\WINDOWS\system32\WLDAP32.dll


[10:14:36] NeroVision 0x76FD0000 3.0.0.4414 C:\WINDOWS\system32\CLBCATQ.DLL


[10:14:36] NeroVision 0x77050000 3.0.0.4414 C:\WINDOWS\system32\COMRes.dll


[10:14:36] NeroVision 0x77120000 5.1.2600.3139 C:\WINDOWS\system32\OLEAUT32.dll


[10:14:36] NeroVision 0x771B0000 6.0.2900.3199 C:\WINDOWS\system32\WININET.dll


[10:14:36] NeroVision 0x773D0000 6.0.2900.2982 C:\WINDOWS\WinSxS\X86_Microsoft.Windows....


[10:14:36] NeroVision 0x774E0000 5.1.2600.2726 C:\WINDOWS\system32\ole32.dll


[10:14:36] NeroVision 0x77690000 5.1.2600.2180 C:\WINDOWS\system32\NTMARTA.DLL


[10:14:36] NeroVision 0x77920000 5.1.2600.2180 C:\WINDOWS\system32\SETUPAPI.dll


[10:14:36] NeroVision 0x77A20000 5.1.2600.2180 C:\WINDOWS\System32\cscui.dll


[10:14:36] NeroVision 0x77A80000 5.131.2600.2180 C:\WINDOWS\system32\CRYPT32.dll


[10:14:36] NeroVision 0x77B20000 5.1.2600.2180 C:\WINDOWS\system32\MSASN1.dll


[10:14:36] NeroVision 0x77B40000 5.1.2600.2180 C:\WINDOWS\system32\appHelp.dll


[10:14:36] NeroVision 0x77BD0000 5.1.2600.2180 C:\WINDOWS\system32\midimap.dll


[10:14:36] NeroVision 0x77BE0000 5.1.2600.2180 C:\WINDOWS\system32\MSACM32.dll


[10:14:36] NeroVision 0x77C00000 5.1.2600.2180 C:\WINDOWS\system32\VERSION.dll


[10:14:36] NeroVision 0x77C10000 6.1.8638.2180 C:\WINDOWS\system32\msvcrt.dll


[10:14:36] NeroVision 0x77DD0000 5.1.2600.2180 C:\WINDOWS\system32\ADVAPI32.dll


[10:14:36] NeroVision 0x77E70000 5.1.2600.3173 C:\WINDOWS\system32\RPCRT4.dll


[10:14:36] NeroVision 0x77F10000 5.1.2600.3159 C:\WINDOWS\system32\GDI32.dll


[10:14:36] NeroVision 0x77F60000 6.0.2900.3199 C:\WINDOWS\system32\SHLWAPI.dll


[10:14:36] NeroVision 0x77FE0000 5.1.2600.2180 C:\WINDOWS\system32\Secur32.dll


[10:14:36] NeroVision 0x780C0000 6.0.8972.0 C:\Program Files\Ahead\NeroVision\MSVCP60.dll


[10:14:36] NeroVision 0x7C800000 5.1.2600.3119 C:\WINDOWS\system32\kernel32.dll


[10:14:36] NeroVision 0x7C900000 5.1.2600.2180 C:\WINDOWS\system32\ntdll.dll


[10:14:36] NeroVision 0x7C9C0000 6.0.2900.3051 C:\WINDOWS\system32\SHELL32.dll


[10:14:36] NeroVision 0x7DF70000 5.1.2600.3016 C:\WINDOWS\system32\oledlg.dll


[10:14:36] NeroVision 0x7E290000 6.0.2900.3199 C:\WINDOWS\system32\shdocvw.dll


[10:14:36] NeroVision 0x7E410000 5.1.2600.3099 C:\WINDOWS\system32\USER32.dll


[10:14:36] NeroVision Book type: 'Automatic'


[10:14:36] NeroVision Properties of your project:


[10:14:36] NeroVision Aspect ratio: Automatic


[10:14:36] NeroVision Video mode: NTSC


[10:14:36] NeroVision Quality: Long play (3382 kbps)


[10:14:36] NeroVision Used disc space: 4.31 GB


[10:14:36] NeroVision Your project contains the following:


[10:14:36] NeroVision Sample format: Automatic


[10:14:36] NeroVision Audio format: LPCM


[10:14:36] NeroVision Encoding mode: Fast Encoding (1-Pass)


[10:14:36] NeroVision Number of titles: 2


[10:14:36] NeroVision 1. wheretheheartis (Video Title, 0h 55m 57s)


[10:14:36] NeroVision Video mode: NTSC


[10:14:36] NeroVision Aspect ratio: 16:9


[10:14:36] NeroVision Quality: Long play (3382 kbps)


[10:14:36] NeroVision Resolution: 720 x 480 (CCIR-601 D1)


[10:14:36] NeroVision Audio SmartEncoding ratio: 0.0 %


[10:14:36] NeroVision Video SmartEncoding ratio: 0.0 %


[10:14:36] NeroVision 2. wheretheheartispart2 (Video Title, 1h 04m 04s)


[10:14:36] NeroVision Video mode: NTSC


[10:14:36] NeroVision Aspect ratio: 16:9


[10:14:36] NeroVision Quality: Long play (3382 kbps)


[10:14:36] NeroVision Resolution: 720 x 480 (CCIR-601 D1)


[10:14:36] NeroVision Audio SmartEncoding ratio: 0.0 %


[10:14:36] NeroVision Video SmartEncoding ratio: 0.0 %


[10:14:36] NeroVision Number of menus: 1


[10:14:36] NeroVision - Main menu (1 page)1A20-0218-0370-2363-8674-1140*


[10:14:36] NeroVision Windows XP 5.1


[10:14:36] NeroVision IA32


[10:14:36] NeroVision WinAspi: -


[10:14:36] NeroVision ahead WinASPI: File 'C:\Program Files\Ahead\Nero\Wnaspi32.dll': Ver=2.0.1.74, size=164112 bytes, created 11/2/2004 12:54:32 PM


[10:14:36] NeroVision NT-SPTI used


[10:14:36] NeroVision Nero API version: 6.6.1.15


[10:14:36] NeroVision Using interface version: 6.6.0.14


[10:14:36] NeroVision Installed in: C:\Program Files\Ahead\Nero\


[10:14:36] NeroVision Application: ahead\NeroVision


[10:14:36] NeroVision Internal Version: 6, 6, 1, 15


[10:14:36] NeroVision Recorder: %26lt;Imation IMW16DL84RAMI%26gt; Version: MSI2 - HA 1 TA 0 - 6.6.1.15


[10:14:36] NeroVision Adapter driver: %26lt;IDE%26gt; HA 1


[10:14:36] NeroVision Drive buffer : 2048kB


[10:14:36] NeroVision Bus Type : default (0) -%26gt; ATAPI, detected: ?


[10:14:36] NeroVision === Scsi-Device-Map ===


[10:14:36] NeroVision DiskPeripheral : IC35L060AVV207-0 atapi Port 0 ID 0 DMA: On


[10:14:36] NeroVision CdRomPeripheral : Imation IMW16DL84RAMI atapi Port 1 ID 0 DMA: On


[10:14:36] NeroVision CdRomPeripheral : OEM CD-ROM F522E atapi Port 1 ID 1 DMA: Off


[10:14:36] NeroVision === CDRom-Device-Map ===


[10:14:36] NeroVision Imation IMW16DL84RAMI D: CDRom0


[10:14:36] NeroVision OEM CD-ROM F522E E: CDRom1


[10:14:36] NeroVision =======================


[10:14:36] NeroVision AutoRun : 1


[10:14:36] NeroVision Excluded drive IDs:


[10:14:36] NeroVision WriteBufferSize: 40894464 (0) Byte


[10:14:36] NeroVision ShowDrvBufStat : 0


[10:14:36] NeroVision BUFE : 0


[10:14:36] NeroVision Physical memory : 253MB (260080kB)


[10:14:36] NeroVision Free physical memory: 122MB (125896kB)


[10:14:36] NeroVision Memory in use : 51 %


[10:14:36] NeroVision Uncached PFiles: 0x0


[10:14:36] NeroVision Use Inquiry : 1


[10:14:36] NeroVision Global Bus Type: default (0)


[10:14:36] NeroVision Check supported media : Disabled (0)


[10:14:36] NeroVision 2.11.2007


[10:14:36] NeroVision NeroAPI


[10:14:36] NeroVision 9:41:31 AM #1 Phase 111 File APIProgress.cpp, Line 275


[10:14:36] NeroVision DVD-Video files sorted


[10:14:36] NeroVision


[10:14:36] NeroVision 9:41:32 AM #2 Text 0 File SCSIPTICommands.cpp, Line 403


[10:14:36] NeroVision LockMCN - completed sucessfully for IOCTL_STORAGE_MCN_CONTROL


[10:14:36] NeroVision


[10:14:36] NeroVision 9:41:39 AM #3 ISO9660GEN -11 File geniso.cpp, Line 3312


[10:14:36] NeroVision First writeable address = 0 (0x00000000)


[10:14:36] NeroVision


[10:14:36] NeroVision 9:41:40 AM #4 ISO9660GEN -11 File geniso.cpp, Line 3312


[10:14:36] NeroVision First writeable address = 0 (0x00000000)


[10:14:36] NeroVision


[10:14:36] NeroVision 9:41:40 AM #5 Text 0 File Burncd.cpp, Line 3316


[10:14:36] NeroVision Turn on Disc-At-Once, using DVD media


[10:14:36] NeroVision


[10:14:36] NeroVision 10:09:44 AM #6 Text 0 File DlgWaitCD.cpp, Line 281


[10:14:36] NeroVision Last possible write address on media: 2298495 (510:46.45, 4489MB)


[10:14:36] NeroVision Last address to be written: 2219967 (493:19.42, 4335MB)


[10:14:36] NeroVision


[10:14:36] NeroVision 10:09:44 AM #7 Text 0 File DlgWaitCD.cpp, Line 293


[10:14:36] NeroVision Write in overburning mode: NO (enabled: CD)


[10:14:36] NeroVision


[10:14:36] NeroVision 10:09:44 AM #8 Text 0 File DlgWaitCD.cpp, Line 2616


[10:14:36] NeroVision Recorder: Imation IMW16DL84RAMI, Media type: DVD-R


[10:14:36] NeroVision Disc Manufacturer: CMC MA - G. AM3


[10:14:36] NeroVision Disc Application Code: 64, Disc Physical Code: 193


[10:14:36] NeroVision


[10:14:36] NeroVision 10:09:44 AM #9 Text 0 File DlgWaitCD.cpp, Line 459


[10:14:36] NeroVision %26gt;%26gt;%26gt; Protocol of DlgWaitCD activities: %26lt;%26lt;%26lt;


[10:14:36] NeroVision =======================================...


[10:14:36] NeroVision Insert empty disc to write to.


[10:14:36] NeroVision (Medium in drive: unknown. Medium required by compilation: DVD R/RW, DVD DL, DVD-RAM.)


[10:14:36] NeroVision


[10:14:36] NeroVision 10:09:44 AM #10 Text 0 File ThreadedTransferInterface.cpp, Line 814


[10:14:36] NeroVision Setup items (after recorder preparation)


[10:14:36] NeroVision 0: TRM_DATA_MODE1 ()


[10:14:36] NeroVision 2 indices, index0 (150) not provided


[10:14:36] NeroVision original disc pos #0 + 2219968 (2219968) = #2219968/493:19.43


[10:14:36] NeroVision relocatable, disc pos for caching/writing not required/ required


[10:14:36] NeroVision -%26gt; TRM_DATA_MODE1, 2048, config 0, wanted index0 0 blocks, length 2219968 blocks [Imation IMW16DL84RAMI ]


[10:14:36] NeroVision ---------------------------------------...


[10:14:36] NeroVision


[10:14:36] NeroVision 10:09:44 AM #11 Text 0 File ThreadedTransferInterface.cpp, Line 1013


[10:14:36] NeroVision Prepare recorder [Imation IMW16DL84RAMI] for write in CUE-sheet-DAO


[10:14:36] NeroVision DAO infos:


[10:14:36] NeroVision ==========


[10:14:36] NeroVision MCN: ""


[10:14:36] NeroVision TOCType: 0x00; Session Closed, disc fixated


[10:14:36] NeroVision Tracks 1 to 1:


[10:14:36] NeroVision 1: TRM_DATA_MODE1, 2048/0x00, FilePos 0 0 4546494464, ISRC ""


[10:14:36] NeroVision DAO layout:


[10:14:36] NeroVision ===========


[10:14:36] NeroVision __Start_|____Track_|_Idx_|_CtrlAdr_|_Rec...


[10:14:36] NeroVision 0 | lead-in | 0 | 0x41 | 0x00


[10:14:36] NeroVision 0 | 1 | 0 | 0x41 | 0x00


[10:14:36] NeroVision 0 | 1 | 1 | 0x41 | 0x00


[10:14:36] NeroVision 2219968 | lead-out | 1 | 0x41 | 0x00


[10:14:36] NeroVision


[10:14:36] NeroVision 10:09:44 AM #12 Text 0 File SCSIPTICommands.cpp, Line 208


[10:14:36] NeroVision SPTILockVolume - completed successfully for FCTL_LOCK_VOLUME


[10:14:36] NeroVision


[10:14:36] NeroVision 10:09:44 AM #13 Phase 24 File APIProgress.cpp, Line 275


[10:14:36] NeroVision Caching of files started


[10:14:36] NeroVision


[10:14:36] NeroVision 10:09:45 AM #14 Text 0 File Burncd.cpp, Line 4158


[10:14:36] NeroVision Cache writing successful.


[10:14:36] NeroVision


[10:14:36] NeroVision 10:09:45 AM #15 Phase 25 File APIProgress.cpp, Line 275


[10:14:36] NeroVision Caching of files completed


[10:14:36] NeroVision


[10:14:36] NeroVision 10:09:45 AM #16 Phase 36 File APIProgress.cpp, Line 275


[10:14:36] NeroVision Burn process started at 16x (22,160 KB/s)


[10:14:36] NeroVision


[10:14:36] NeroVision 10:09:45 AM #17 Text 0 File ThreadedTransferInterface.cpp, Line 2717


[10:14:36] NeroVision Verifying disc position of item 0 (relocatable, disc pos, no patch infos, orig at #0): write at #0


[10:14:36] NeroVision


[10:14:36] NeroVision 10:09:46 AM #18 Text 0 File DVDR.cpp, Line 2846


[10:14:36] NeroVision Recording mode: Sequential Recording Mode


[10:14:36] NeroVision


[10:14:36] NeroVision 10:09:46 AM #19 Text 0 File DVDR.cpp, Line 3002


[10:14:36] NeroVision Start write address at LBA 0


[10:14:36] NeroVision DVD high compatibility mode: Yes


[10:14:36] NeroVision


[10:14:36] NeroVision 10:09:46 AM #20 Text 0 File Cdrdrv.cpp, Line 8737


[10:14:36] NeroVision ---- DVD Structure: Physical Format Information (00h) ----


[10:14:36] NeroVision Media Type: 0, Layer: 0, Address: 0 (0 h), AGID: 0; Length: 2050


[10:14:36] NeroVision Book Type: DVD-R (2), Part Version: 2.0x (5), Extended Part Version: 2.1 (33)


[10:14:36] NeroVision Disc Size: 120 mm, Maximum Rate: %26lt;not specified%26gt; (F h)


[10:14:36] NeroVision Number of Layers: 1, Track Path: Parallel Track Path (PTP), Layer Type: recordable


[10:14:36] NeroVision Linear Density: 0,267 um/bit, Track Density: 0,74 um/track


[10:14:36] NeroVision Starting Physical Sector Number of Data Area: 30000 h (DVD-ROM, DVD-R/-RW, DVD+R/+RW)


[10:14:36] NeroVision End Physical Sector Number of Data Area: 26127F h


[10:14:36] NeroVision End Sector Number in Layer 0: 0 h (LBN: FFFD0000 h, 4193920 MB)


[10:14:36] NeroVision Data in Burst Cutting Area (BCA) does not exist


[10:14:36] NeroVision Start sector number of the current Border-Out: 0 h


[10:14:36] NeroVision Start sector number of the next Border-In: 0 h


[10:14:36] NeroVision Media Specific [16..63]:


[10:14:36] NeroVision 00 60 00 10 20 30 40 50 - 00 00 00 21 00 00 00 00 .`...0@P...!....


[10:14:36] NeroVision 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00 ................


[10:14:36] NeroVision 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00 ................


[10:14:36] NeroVision


[10:14:36] NeroVision 10:11:06 AM #21 Text 0 File Cdrdrv.cpp, Line 1224


[10:14:36] NeroVision 10:11:06.500 - D: Imation IMW16DL84RAMI : Queue again later


[10:14:36] NeroVision


[10:14:36] NeroVision 10:12:53 AM #22 SPTI -1135 File SCSIPassThrough.cpp, Line 178


[10:14:36] NeroVision CdRom0: SCSIStatus(x02) WinError(0) NeroError(-1135)


[10:14:36] NeroVision Sense Key: 0x03 (KEY_MEDIUM_ERROR)


[10:14:36] NeroVision Sense Code: 0x0C


[10:14:36] NeroVision Sense Qual: 0x00


[10:14:36] NeroVision CDB Data: 0x2A 00 00 04 11 20 00 00 20 00 00 00


[10:14:36] NeroVision Sense Area: 0x70 00 03 00 00 00 00 0A 00 00 00 00 0C


[10:14:36] NeroVision Buffer x15e939c0: Len x10000


[10:14:36] NeroVision 0x00 00 01 BA 44 49 E6 7C 94 D3 01 89 C3 F8 00 00


[10:14:36] NeroVision 0x01 E0 07 EC 80 00 00 E4 F8 05 B2 A9 F2 01 6C 07


[10:14:36] NeroVision 0x29 FC 58 1D 8F 53 F2 3C 26 55 3F B3 8B 27 C1 44


[10:14:36] NeroVision


[10:14:36] NeroVision 10:12:53 AM #23 CDR -1135 File Writer.cpp, Line 281


[10:14:36] NeroVision Write error


[10:14:36] NeroVision D: Imation IMW16DL84RAMI


[10:14:36] NeroVision


[10:14:36] NeroVision 10:12:53 AM #24 Text 0 File DVDR.cpp, Line 3246


[10:14:36] NeroVision EndDAO: Last written address was 266527


[10:14:36] NeroVision


[10:14:36] NeroVision 10:12:53 AM #25 Phase 38 File APIProgress.cpp, Line 275


[10:14:36] NeroVision Burn process failed at 16x (22,160 KB/s)


[10:14:36] NeroVision


[10:14:36] NeroVision 10:12:53 AM #26 Text 0 File SCSIPTICommands.cpp, Line 253


[10:14:36] NeroVision SPTIDismountVolume - completed successfully for FSCTL_DISMOUNT_VOLUME


[10:14:36] NeroVision


[10:14:36] NeroVision 10:12:55 AM #27 Text 0 File Cdrdrv.cpp, Line 9945


[10:14:36] NeroVision DriveLocker: UnLockVolume completed


[10:14:36] NeroVision


[10:14:36] NeroVision 10:12:56 AM #28 Text 0 File SCSIPTICommands.cpp, Line 403


[10:14:36] NeroVision UnLockMCN - completed sucessfully for IOCTL_STORAGE_MCN_CONTROL


[10:14:36] NeroVision


[10:14:36] NeroVision Existing drivers:


[10:14:36] NeroVision File 'Drivers\CDRALW2K.SYS': Ver=8.0.0.212 , size=9464 bytes, created 9/29/2007 12:07:50 AM


[10:14:36] NeroVision File 'Drivers\PXHELP20.SYS': Ver=3.00.56a, size=43528 bytes, created 9/29/2007 12:07:50 AM (Prassi/Veritas driver for win 2K)


[10:14:36] NeroVision File 'Drivers\InCDfs.SYS': Ver=4, 3, 23, 2, size=102016 bytes, created 3/23/2006 5:15:58 PM (InCD4 driver for win NT/2K/XP)


[10:14:36] NeroVision File 'Drivers\InCDpass.SYS': Ver=4, 3, 23, 2, size=29440 bytes, created 3/23/2006 5:15:56 PM (InCD4 driver for win NT/2K/XP)


[10:14:36] NeroVision File 'Drivers\InCDrec.SYS': Ver=4, 3, 23, 2, size=8704 bytes, created 3/23/2006 5:00:28 PM (InCD4 driver for win NT/2K/XP)


[10:14:36] NeroVision Registry Keys:


[10:14:36] NeroVision HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\AllocateCDROM... : 0 (Security Option)


[10:15:02] GCHW Node added: Microsoft Kernel Wave Audio Mixer

Burning movie with my nero?
You may try other DVD burning software such as AVS Video Tools, I always use it to burn DVDs and watch with my home DVD player, it's not free, but it works really nice for me, here is a guide about it


http://www.top5soft.com/tutorial/how-to-...


Hope it helps and have a nice day.
Reply:What makes you think we want to look thru your trash. Next time, just ask the question. You may need to uninstall the Nero and re install from the disk. Good luck.