Home > processing error > error processing common blocks before line

Error Processing Common Blocks Before Line

Contents

subroutine xxx( u ) real u common/tstep/ nt, t, dt, cfl, nrk, nrk_max, gamma(4), zeta(4) return end So I issue a command processing class does not exist like f77 testit.f and all goes well. But then, I would like all my real

Fortran Common

numbers treated as double precision, so I type f77 -r8 testit.f and I get a bunch of error messages like Error processing nullpointerexception processing image common blocks before line 7 of testit.f: Declaration error for t: common alignment Error processing common blocks before line 7 of testit.f: Declaration error for dt: common alignment Now, on my FreeBSD operating system, f77 actually calls unexpected token void processing a program f2c, which converts the fortran code to c code. it seems that it is f2c that is generating these errors. It seems to me that f2c has a bug in it. Or am I misunderstanding it? I hope I sent this to the correct groups - if not please redirect me. Thanks Stephen -- University of Missouri-Columbia Columbia, MO 65211 USA Phone (573) 882 4540 Fax (573) 882 1869 http://www.*-*-*.com/ ~stephen

Processing Null

Sun, 14 Jul 2002 03:00:00 GMT Jan Vorbruegge#2 / 3 Help using Fortran Your problem is that the compiler wants to have all variables aligned on natural boundaries. The usual rule is to declare variables in common in decreasing order. Now, for the single precision case, both the integers (nt, nrk, etc.) and the reals (t, dt, etc.) are the same size, and their order doesn't matter. Compiling with -r8, this rule is now violated. So you should move the real variable to the beginning of the common block (in any order), followed by the integers (in any order), _or_ also compile with -i8, if such a thing exists on your compiler 8-). Jan Sun, 14 Jul 2002 03:00:00 GMT p. gre#3 / 3 Help using Fortran There are rules for common block alignment. Instead of using f2c (f77) you may also want to investigate g77. I've been doing quite of bit of fortran 77 maintenance on my fbsd box using this. In some areas it's a bit more advanced than f2c. If you install the lates gcc port you should get g77 installed as part of the package. to check just type g77 instead of f77 when you compile. g77 also has a fairly complete online manual at http://www.gnu.org/software/gcc/onlinedocs/g77_toc.html This is

Sign in Pricing Blog Support Search GitHub This repository Watch 387 Star 2,986 Fork 895 processing/processing Code Issues 289 Pull requests 24 Projects 0 Wiki Pulse Graphs Common expecting eof found processing Errors Casey Reas edited this page Aug 25, 2014 · 3 revisions processing error statistics Pages 40 Home Advanced OpenGL Advanced OpenGL in Processing 2.x Build Instructions C.H.I.P. Changes Changes in 3.0 Command Line Common

Processing Error Definition

Errors Contributing to Processing with Pull Requests Core Values Examples Overview Export Info and Tips FAQ GSOC 14 PDE 3.0 How to Install a Contributed Library ITP Processing Internships Library Basics http://computer-programming-forum.com/49-fortran/db4953089f12e4b1.htm Library Guidelines Library Overview Localization Multiple Sketchbooks OpenGL Issues Processing Fellowships Project List Raspberry Pi Report Bugs Repositories Running without a Display Serial Issues Style Guidelines Supported Platforms Templates Tool Basics Tool Guidelines Tool Ideas Tool Overview Troubleshooting Window Size and Full Screen Window Size and Full Screen for Processing 2.0 Show 25 more pages… Clone this wiki locally Clone in Desktop unexpected token: https://github.com/processing/processing/wiki/Common-Errors something Translation: I’m expecting a piece of code here that you forgot, most likely some punctuation, like a semi-colon, parentheses, curly bracket, etc. This error is pretty much always caused by a typo. Unfortunately, where the error points you to can be misleading. The “something” is sometimes just fine and the actual error is caused by the line before or after that piece of code. Anytime you forget or include an improper comma, semi-colon, quote, parentheses, bracket, etc., you’ll get this error. Here are some examples: Incorrect: int val = 5 Correct: int val = 5; Found one too many { characters without a } to match it Translation: You forgot to close a block of code, such as an if statement, a loop, a function, a class, etc. Incorrect: void setup() { for (int i = 0; i < 10; i++) { if (i > 5) { line(0,i,i,0); println("i is greater than 5"); } } Correct: void setup() { for (int i = 0; i < 10; i++) { if (i > 5) { line(0,i,i,0); println("i is greater than 5"); } } } No accessible field named "myVar"

The COMMON block, a piece of shared memory in the computer, is another method for passing information between program units. Data stored in a COMMON block https://www.obliquity.com/computer/fortran/common.html is not passed between program units via argument lists, but through http://www.personal.psu.edu/jhm/f90/questions/fort95.html the COMMON statement near the beginning of each program unit. There are two types of COMMON blocks: blank and named. A program may contain only one blank COMMON block but any number of named COMMON blocks. Every COMMON block must be declared in every program unit in processing error which the information stored therein is needed. In addition, the unique blank COMMON block must be declared in the main program. The blank COMMON block is set up with the statement COMMON variable-list and the named COMMON block is declared by COMMON /name/ variable-list where the name between the forward slashes is the name of the named COMMON block. error processing common Every subroutine or user-defined function that uses data stored in the COMMON block, blank or named, must have a similar statement to those above. The variable names do not need to match between program units but it is vital that their types and the order in which they appear in the list are identical. Example Consider the following program fragment: PROGRAM MAIN INTEGER A REAL F,R,X,Y COMMON R,A,F A = -14 R = 99.9 F = 0.2 CALL SUB(X,Y) … END SUBROUTINE SUB(P,Q) INTEGER I REAL A,B,P,Q COMMON A,I,B … END In this example, a blank COMMON block holds three values: a REAL number, an INTEGER number, and another REAL number. Memory is shared in the COMMON block in the following way: Main Program Common Memory Storage Subroutine R 99.9 A A -14 I F 0.2 B Note that the variable names for each memory area differ between the main program and the subroutine, but that the number and type of variables are the same as is the order in which they are li

with the text and Web pages, buying something else from a bookstore, or buying a Fortran package for your PC. Do we need to prompt the user for input on our programs? Always! In this class, any programmed "read" from the terminal must be preceded by writing some intelligible message asking for input. Why do you put so many lines of empty space in your programs? I hope the lines aren't totally empty. They should contain a "c" in column one. These "blank" lines are just to make the comments stand out from Fortran code lines or to highlight key blocks of a program. What directory is used by the compiler for compiling a Fortran Program? Where does f77 live? For the work in this class, you should assume that everything happens in whatever directory you are in when you type the "f77". Type "pwd" if you don't know the answer to this question. The executable file called "f77" resides both in /bin and /usr/bin on these machines. This is very unsual. To locate an executable file use the "whereis" command (e.g. "whereis f77"). Unfortunately the manual pages on f77 aren't connected properly and are listed under IBM's other name for their compiler, "xlf". Try "man xlf" for more information on the compiler, but don't expect too much. IBM likes to force people to buy manuals and special CD-ROM packages. How do you use a logical variable? What is stored there? Most frequently, logical variables are used in association with IF statements. When you want to set a logical variable LVAR to true you use "LVAR=.TRUE.". For false use "LVAR=.FALSE." In practice the computer usually stores an integer 0 in memory for false and integer 1 for true. The normal logical variable occupies 1 byte of space. Where can I get a Fortran Compiler for an IBM PC? You can pick up one on the internet from the GNU project, but get a better package from MOC for about $80.00. How do we know where various steps go in a Fortran program? Some commands have special locations, but most are located by the needs of the specific program. The PROGRAM card is always first. Statements giving vari

 

Related content

administration error sample selection error

Administration Error Sample Selection Error table id toc tbody tr td div id toctitle Contents div ul li a href Administrative Error Letter a li li a href Administrative Error Federal Government a li li a href Admin Error Apology Letter a li ul td tr tbody table p or another blunder Types edit There are four relatedl types of administrative errors Data-processing error data processing error definition A category of administrative error that occurs in data p h id Administrative Error Letter p processing because of incorrect data entry incorrect computer programming or other error during p h id

credit card processing error codes

Credit Card Processing Error Codes table id toc tbody tr td div id toctitle Contents div ul li a href Credit Card Error Messages a li li a href Credit Card Machine Error Codes a li li a href Xbox Live Credit Card Error Codes a li ul td tr tbody table p SUMMARY Below you'll find explanations of decline codes you may have encountered as well as potential solutions Declines are made by the card-issuing bank not your software If your client does not believe their card should have relatedl declined please advise them to call the - on

credit card processing error code 200

Credit Card Processing Error Code table id toc tbody tr td div id toctitle Contents div ul li a href Error Code Credit Card a li li a href Ebay Payment Processing Error a li li a href Ebay Payment Processing Error a li ul td tr tbody table p the history of your tickets Article Rating Click to rate Rating s relatedl Home Knowledge Base Credit Card Processing Payments Credit Card Error Codes credit card declined code Actions Print Add Favorite Share BlinkList Blogmarks co mments del icio us Digg p h id Error Code Credit Card p Diigo

data processing error

Data Processing Error table id toc tbody tr td div id toctitle Contents div ul li a href A Processing Error Occurred Collecting Data Using This Base Domain a li li a href Processing Error Definition a li li a href Processing Error Statistics a li ul td tr tbody table p or another blunder Types edit There are four types of administrative errors Data-processing error A category of relatedl administrative error that occurs in data processing because a processing error occurred collecting data of incorrect data entry incorrect computer programming or other error p h id A Processing Error

due to a processing error

Due To A Processing Error table id toc tbody tr td div id toctitle Contents div ul li a href How Does The Supreme Court Define Due Process a li li a href Processing Error Statistics a li li a href Processing Error Definition a li ul td tr tbody table p p p Shoes Jewelry Women Men Girls Boys Baby Collectibles Fine Art Computers relatedl Courses Credit and Payment Cards Digital Music Electronics Gift Cards Grocery Gourmet Food Handmade Health Household Baby Care Home Business Services Home Kitchen Industrial Scientific Kindle Store Luggage Travel Gear Luxury Beauty Magazine Subscriptions

nullpointerexception processing error

Nullpointerexception Processing Error table id toc tbody tr td div id toctitle Contents div ul li a href Processing Class Does Not Exist a li li a href Expecting Eof Found Processing a li li a href Processing Error Statistics a li li a href Processing Nullpointerexception a li ul td tr tbody table p Sign in Pricing Blog Support Search GitHub option form This repository Watch Star relatedl Fork processing processing Code Issues Pull requests processing nullpointerexception image Projects Wiki Pulse Graphs Common Errors Casey Reas edited p h id Processing Class Does Not Exist p this page Aug

payment processing error

Payment Processing Error table id toc tbody tr td div id toctitle Contents div ul li a href Ebay Unable To Process Paypal Payment a li li a href Paypal Error Message This Transaction Cannot Be Completed a li li a href Ebay Paypal Problems Today a li ul td tr tbody table p My Collections Followed searches MessagesNotification You are here Home Buying Guides Everything Else Every Other Thing PayPal relatedl Error When Attempting To Make Payment deleted Views paypal pay for ebay items Like Likes Comments Comment Like if this guide is helpful Please ebay cannot process paypal

payment processing error 601 ebay

Payment Processing Error Ebay table id toc tbody tr td div id toctitle Contents div ul li a href Paypal Pay For Ebay Items a li li a href Ebay Payment Processing Error a li li a href Ebay Payment Processing Error a li li a href Paypal Processing Error a li ul td tr tbody table p to PayPal Buying with PayPal Error Checkout input input input input input input input input input relatedl input input input CommunityCategoryBoardUsers input input turn on suggestions Auto-suggest helps ebay cannot process paypal payment you quickly narrow down your search results by suggesting

payment processing error 601

Payment Processing Error table id toc tbody tr td div id toctitle Contents div ul li a href Paypal Pay For Ebay Items a li li a href Ebay Payment Processing Error a li li a href You Have Been Logged Out Of Paypal Please Select Payment Method a li ul td tr tbody table p to PayPal Buying with PayPal Error Checkout relatedl input input input input input input input input input input input input CommunityCategoryBoardUsers ebay cannot process paypal payment input input turn on suggestions Auto-suggest helps you quickly narrow down your search p h id Paypal Pay

paypal error 601

Paypal Error table id toc tbody tr td div id toctitle Contents div ul li a href Ebay Payment Processing Error a li li a href Paypal Processing Error a li ul td tr tbody table p Selling My Collections Followed searches MessagesNotification eBay Community Answer Center Discussion Boards Groups Announcements Seller Center Policies relatedl Archives facebook google plus instagram pinterest twitter THE ANSWER ebay cannot process paypal payment CENTER The Answer Center is your place to ask fellow eBay Community members paypal pay for ebay items questions about buying and selling on eBay and for you to share your

paypal error code 601

Paypal Error Code table id toc tbody tr td div id toctitle Contents div ul li a href Ebay Payment Processing Error a li li a href Paypal Processing Error a li li a href Paypal Not Working On Ebay a li ul td tr tbody table p to PayPal Buying with PayPal Error Checkout relatedl input input input input input input input input input input input input ebay cannot process paypal payment CommunityCategoryBoardUsers input input turn on suggestions Auto-suggest helps you quickly narrow down your paypal pay for ebay items search results by suggesting possible matches as you type

paypal payment error 601

Paypal Payment Error table id toc tbody tr td div id toctitle Contents div ul li a href Ebay Cannot Process Paypal Payment a li li a href Ebay Payment Processing Error a li li a href Paypal Processing Error a li li a href You Have Been Logged Out Of Paypal Please Select Payment Method a li ul td tr tbody table p to PayPal Buying with PayPal Error Checkout input input input input input input input input input input relatedl input input CommunityCategoryBoardUsers input input turn on suggestions Auto-suggest helps you p h id Ebay Cannot Process Paypal

processing error

Processing Error table id toc tbody tr td div id toctitle Contents div ul li a href Nullpointerexception Processing Image a li li a href Processing Classes a li li a href Processing Size a li ul td tr tbody table p correctly planned implementation methods Context Processing errors include all post-collection operations as well as p h id Nullpointerexception Processing Image p the printing of questionnaires Most processing errors occur in data for individual units although errors can also be introduced in the implementation of systems and estimates In survey data for example processing sample selection error errors may

processing error coordinate out of bounds

Processing Error Coordinate Out Of Bounds p Tool DevelopmentEvents and OpportunitiesGeneral Discussion Sub forum Move this topic Cancel Core Library Questions coloresque Weird problem coordinates out of bounds in Core Library Questions years ago I just took the relatedl movie sample code from the Processing website and when I want to run it using my own movie for which I also changed the height and width of the canvas it gives me the error ArrayIndexOutOfBoundsException Coordinate out of bounds What could possibly be wrong import processing video Movie theMov void setup size theMov new Movie this bird mov theMov play

processing error adventure quest

Processing Error Adventure Quest table id toc tbody tr td div id toctitle Contents div ul li a href Adventurequest a li li a href Aqw a li ul td tr tbody table p View this message relatedl in English YouTube aq worlds p h id Adventurequest p Learn more You're p h id Aqw p viewing YouTube in Greek You can change this preference below count total aq trainer processing error'' solution sharingan playlist p p Cheats What's New Register General Art Design Programming Market Place Giveaways Premium How MPGH Username Remember Me Password CSGO Hacks League of Legends

processing error inside serial init

Processing Error Inside Serial Init p Tool DevelopmentEvents and OpportunitiesGeneral Discussion Sub forum Move this topic Cancel Integration and Hardware stixan Error inside Serial init driving me crazy in Integration and Hardware years ago I am relatedl trying to connect to Lego NXT via Bluetooth using the Serial library After one succesful connection all I get now is this error message Error inside Serial init gnu io PortInUseException Unknown Application Having trawled the internet for every possible solution to this problem and still getting this sect error I am finally declaring myself checkmate sigh QUESTIONS - Does the version of

processing error c1041724

Processing Error C p games PC games eseutil mh Windows games Windows phone games Entertainment All Entertainment isinteg Movies TV Music Business Education Business Students educators Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet Explorer Microsoft Edge Skype OneNote OneDrive Microsoft Health MSN Bing Microsoft Groove Microsoft Movies TV Devices Xbox All Microsoft devices Microsoft Surface All Windows PCs tablets PC accessories Xbox games Microsoft Lumia All Windows phones Microsoft HoloLens For business Cloud Platform Microsoft Azure Microsoft Dynamics Windows for business Office for business Skype for business Surface for business

processing error arrayindexoutofboundsexception

Processing Error Arrayindexoutofboundsexception table id toc tbody tr td div id toctitle Contents div ul li a href Arrayindexoutofboundsexception Processing a li ul td tr tbody table p Tool DevelopmentEvents and OpportunitiesGeneral Discussion Sub forum Move this topic Cancel Core Library Questions fach k ArrayIndexOutofBoundsException ERROR in Core Library Questions months ago Why this is saying relatedl ArrayIndexOutofBoundsException import processing serial Serial myPort float brightness p h id Arrayindexoutofboundsexception Processing p void setup size colorMode RGB println Serial list myPort arrayindexoutofboundsexception processing new Serial this Serial list void draw background while myPort available int inByte myPort read fill inByte beginShape

processing error during upload google calendar

Processing Error During Upload Google Calendar p p p Google p p p p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of million programmers just like you helping each other Join them it only takes a minute Sign

processing error attempt to delete member that is in use

Processing Error Attempt To Delete Member That Is In Use p dimension table So when you try to incrementally process the dimension this problemas relatedl pops up I can incrementaly process the dimension with the original data and it all finishes ok Then I insert some records and incrementally process again and everythink ok Then I try to insert new records But for some reason the secuence or related key members for the new records are rejected in an incremental update The issue here is that when I insert new records that are related or joined with the main dimension

processing error no data received from tsmuxer

Processing Error No Data Received From Tsmuxer p S VCD HD DVD Blu-ray authoring multiAVCHD - author Blu-ray AVCHD Blu-ray relatedl players camcoders Viera TV HD DVD User Name Remember Me Password Register FAQ Calendar Today's Posts Search Search Forums Show Threads Show Posts Tag Search Advanced Search Go to Page Page of Last raquo Thread Tools Search this Thread Display Modes th December Link deank Programmer or just Join Date Oct Location Sofia Bulgaria Posts multiAVCHD - author Blu-ray AVCHD Blu-ray players camcoders Viera TV HD DVD Latest supported version version build as of July th Doownload links for

processing error in internet communication framework sap

Processing Error In Internet Communication Framework Sap table id toc tbody tr td div id toctitle Contents div ul li a href Soap Srt Processing Error In Internet Communication a li li a href Icmconninitserverssl Sapsslsessionstart Returned - a li li a href Icf Error When Receiving The Response Icm http connection failed a li li a href Icm http ssl error Sap a li ul td tr tbody table p and SafetyAsset p h id Soap Srt Processing Error In Internet Communication p NetworkAsset Operations and MaintenanceCommerceOverviewSubscription Billing and Revenue icf error when receiving the response icm http ssl

processing error null pointer exception

Processing Error Null Pointer Exception table id toc tbody tr td div id toctitle Contents div ul li a href Processing Nullpointerexception a li li a href Unexpected Token Processing a li li a href Expecting Eof Processing a li ul td tr tbody table p Sign in Pricing Blog Support Search GitHub option form This repository Watch Star Fork processing processing Code Issues Pull requests Projects Wiki Pulse relatedl Graphs Common Errors Casey Reas edited this page Aug processing nullpointerexception image middot revisions Pages Home Advanced OpenGL Advanced OpenGL in Processing x Build p h id Processing Nullpointerexception p

processing error inside serial

Processing Error Inside Serial p Tool DevelopmentEvents and OpportunitiesGeneral Discussion Sub forum Move this topic Cancel Integration and Hardware stixan Error inside Serial init driving me crazy relatedl in Integration and Hardware years ago I am trying to connect to Lego NXT via Bluetooth using the Serial library After one succesful connection all I get now is this error message Error inside Serial init gnu io PortInUseException Unknown Application Having trawled the internet for every possible solution to this problem and still getting this sect error I am finally declaring myself checkmate sigh QUESTIONS - Does the version of RXTX

processing error from inside the android tools

Processing Error From Inside The Android Tools p Sign In Register Categories Recent Discussions Unanswered Categories All Categories relatedl KAnnouncements Guidelines Common Questions Using Processing K Programming Questions K Questions about Code K How To K Hello Processing GLSL Shaders Library Questions K Hardware Integration Other Languages K Kinect Arduino Raspberry PI Questions about Modes K Android Mode JavaScript Mode Python Mode Questions about Tools Developing Processing Create Announce Libraries Create Announce Modes Create Announce Tools Summer of code Summer of Code Summer of Code p js p js Programming Questions p js Library Questions p js Development Questions General

processing error nullpointerexception

Processing Error Nullpointerexception table id toc tbody tr td div id toctitle Contents div ul li a href Processing Array a li li a href Processing Random a li ul td tr tbody table p Sign in Pricing Blog Support Search GitHub option form This repository Watch relatedl Star Fork processing processing Code Issues processing nullpointerexception image Pull requests Projects Wiki Pulse Graphs Common Errors processing nullpointerexception Casey Reas edited this page Aug middot revisions Pages Home Advanced OpenGL Advanced unexpected token processing OpenGL in Processing x Build Instructions C H I P Changes Changes in Command Line Common Errors

processing error has occurred c1041724

Processing Error Has Occurred C p games PC games eseutil mh Windows games Windows phone games Entertainment All Entertainment isinteg Movies TV Music Business Education Business Students educators Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet Explorer Microsoft Edge Skype OneNote OneDrive Microsoft Health MSN Bing Microsoft Groove Microsoft Movies TV Devices Xbox All Microsoft devices Microsoft Surface All Windows PCs tablets PC accessories Xbox games Microsoft Lumia All Windows phones Microsoft HoloLens For business Cloud Platform Microsoft Azure Microsoft Dynamics Windows for business Office for business Skype for business Surface

processing error the constructor is undefined

Processing Error The Constructor Is Undefined p Tool DevelopmentEvents and OpportunitiesGeneral Discussion Sub forum Move this topic Cancel Programming Questions eesal Class Name returns The constructor is undefined error in relatedl Programming Questions months ago Hi I think there is a bug in the class' naming I'm a newbie to Processing ands was experimenting with classes so I created this code that draws a simple title bar It works like this but the class and constructor were originally named TitleBar and it didn't work The error was The constructor 'TitleBar' is undefined I reviewed my code with the Objects tutorial

processing error outlook.exe

Processing Error Outlook exe p stuck at Processing stopped working freezes or hangs Applies To Outlook Outlook Less Applies To Outlook Outlook More relatedl Which version do I have More Did you get an Outlook not responding error Is Outlook stuck on a screen that simply says Processing Or does Outlook hang freeze or stop working when you're opening a file or sending an email message There are a number of possible reasons for Outlook to behave this way We've presented the potential solutions in order from quickest to most time consuming Note September When you search using the Advanced

processing error in source system reported

Processing Error In Source System Reported p and SafetyAsset NetworkAsset Operations and MaintenanceCommerceOverviewSubscription Billing and Revenue ManagementMaster Data Management for CommerceOmnichannel CommerceFinanceOverviewAccounting and Financial CloseCollaborative Finance OperationsEnterprise Risk and ComplianceFinancial Planning and AnalysisTreasury and Financial Risk ManagementHuman ResourcesOverviewCore Human Resources and PayrollHuman Capital AnalyticsTalent ManagementTime and Attendance ManagementManufacturingOverviewManufacturing NetworkManufacturing OperationsResponsive ManufacturingMarketingOverviewMarket with Speed and AgilityUnique Customer ExperiencesReal-Time Customer InsightsR D EngineeringOverviewDesign NetworkDesign OrchestrationProject and Portfolio ManagementSalesOverviewCollaborative Quote to CashSales Force AutomationSales Performance ManagementSelling Through Contact CentersServiceOverviewEfficient Field Service ManagementOmnichannel Customer ServiceTransparent Service Process and OperationsSourcing and ProcurementOverviewContingent Workforce ManagementDirect ProcurementSelf-Service ProcurementServices ProcurementStrategic Sourcing and Supplier ManagementSupply ChainOverviewDemand ManagementDemand NetworkLogistics NetworkManufacturing

processing error no data received from tsmuxer trying again

Processing Error No Data Received From Tsmuxer Trying Again p S VCD HD DVD Blu-ray authoring multiAVCHD - author relatedl Blu-ray AVCHD Blu-ray players camcoders Viera TV HD DVD User Name Remember Me Password Register FAQ Calendar Today's Posts Search Search Forums Show Threads Show Posts Tag Search Advanced Search Go to Page Page of Last raquo Thread Tools Search this Thread Display Modes th December Link deank Programmer or just Join Date Oct Location Sofia Bulgaria Posts multiAVCHD - author Blu-ray AVCHD Blu-ray players camcoders Viera TV HD DVD Latest supported version version build as of July th Doownload