SQLite / Widget undefined question

I am developing a SQLite DB backend for a widget on a real device (9700 running 5.0.0.714) application.

I get cannot convert not defined for an object when I try to refer to the database object.

I guess that's because the database file is not created.

Is there a way to specify the location of the file data on the SD card?

Once the database file is created, I see in the list of the files in the device?

TIA

Oh duh! Now I can see it-thank you!

Tags: BlackBerry Developers

Similar Questions

  • Hide Slide widget on question slides

    Captivate v5.5

    I have the slide number widget on my first slide, the value to display for the project - which works very well.

    However, I have a series of question slides toward the end of the project on which I posted 'Question 1 of 10 etc'.

    In these issues, I would stop the number of the slide (of the widget) being seen and then reappear again a few final slides.

    Is this possible and if yes, how would you please?

    Noel

    Hi Noel,

    No problem on CP5.5. Here are the steps:

    1. On the first slide of the issue, in the face of the drawer properties go to the accordion in Action
    2. On enter (slide) select hide, then choose the label of the widget
    3. On the first slide where you want to display the widget repeat once again, this
    4. but now, choose display and choose the label of the widget

    It would have been a problem in 5.0 because you could hide the widget, but not show it again on a later slide.

    Of course, the numbering will continue all in hiding, is this OK? So if you have 7 slides and widget is hidden on slides 3-5, on slide 6 it will show 6 out of 7.

    Lilybiri

  • Custom Widget creation questions

    Hi all is there,

    I don't know if this is the best forum to post this question but I'll try, maybe someone could help me.

    I'm working on an e-Learning project, all content (texts, graphics and audio) are ready, I just put them in a very complete presentation

    To create the presentation, I buy Adobe eLearning Suite.

    For my presentation, I want to have some sort of bar menu at the top of my slides and to do that I started creating a custom widget.

    The menu bar is created with Flash (AS2) and animation are friendly (it was the easy part)

    Now my problem is how can I bind the button actions to my Captivate project?

    I have 10 buttons action should be to move the presentation to a specific slide.

    I try to do with the cpCmndGotoSlide property, but that seems not work

    I also have another interrogation, "exporting" properties of my widget to Captivate to aim for each button slide number?

    Can you please give me a pointer to web sites that explain this?

    I read somewhere that it is possible to pass XML parameters, but I can't find how

    Can you also recommend a book?

    Thanks in advance for any comment or suggestion

    Best regards

    Fabrice

    Even if you don't place in the widgets folder, it can be inserted as a widget by insert > Widget or by pressing Ctrl + Shift + W

  • Accrodion Widget Menu question

    Has anyone already used the Accordion widget in Adobe Muse to serve a menu? Im trying to get cela to fall upward and push the menu down as it appears.

    Here's an example www.linkinpark.com if you click the media button, it shows what I am trying to achieve. Searched a bit on this topic.

    All that is needed to do this is to make sure you check the option may close all. After that, remove all but one of the accordion panels, then place your vertical menu in the content area. Be sure to close the accordion before publishing.

    You can see it in action on this site: http / / www.josephinej.net (mobile version).

    I hope this helps.

    David

    http://www.creativemuse.co

  • iBooks Widget Audio question (leading edge)

    Hello, my name is Dominic Redding. I worked on a HTML5 widget for an iBook (stable via iBooks author). I had a problem that I can't find a solution for (I checked through these forums, the Apple forums and some other forums, and each "fix" missed me). I implement my audio through the implementation of audio native from the edge (using the latest version), and then assign the room a div visibly out of the scene. My problem is:

    I have audio in my project that triggers whenever a button is tapped. Preview of the browser Ctrl + return, everything is A-OK. When I put the .wdgt in iBooks author and post it on an iPad, the audio won't play entirely. When I test the .ibook on Mac iBook, everything works perfectly. When I test the .ibook on an iPad, it fails again. I use .m4a audio files.

    I'm trying to figure out how to get the audio to play on an iPad (or why it will not play on the iPad) and I need help. Thank you for your time.

    My file .ibook for anyone who wants to prod: https://copy.com/AGuFcv60OxZW

    I thought about it. I tested the audio I was jQuerying against animate audio set to play in the dashboard interface. The audio interface of Edge played it perfectly, so I looked through my rating. SYM.$("element") [0] (edge) .play; Restores the sound at its beginning. I put audio to have currentTime = 0 and then play, which is somehow messed up the order of audio playback and prevented his on the iPad.

  • query db SQLite to the question of the text fields

    I have a search query that I can send the data to a list, but how do I send data to the text fields?
    for example, I am looking for in a myTable with 4 columns: id, item1, item2, item3, this is the code: I

    private function cSearch (): void {}
    stmt.sqlConnection = this.isDbConnected (sqlConn);
    var sql:String = "SELECT * FROM MaTable WHERE (myTable.item1) LIKE '% ' | '. @item1 | '%' ";
    stmt. [Parameters["@Item1"] = searchInput.text;
    stmt. Text = sql;
    stmt.addEventListener (SQLErrorEvent.ERROR, sqlError);
    stmt.addEventListener (SQLEvent.RESULT, selectResult);
    stmt. Execute();
    }

    If I want to display the data in a list, I'll use this code:

    private void selectResult(res:SQLEvent):void {}
    Table: data var = stmt.getResult () .data;
    cList = new ArrayCollection();
    If {(data)
    for (var d: int = 0; d < = data .length-1; d ++) {}

    cList.addItem ({user.user-id: data [d], item1: data [d] .item1, item2: data [d] .item2t, item3: data [d] .item3});
    }

    } else {}
    trace ("no records available");
    }

    }
    private void displayLData(item:Object):String {}
    Return item.id + ".."  \t"+ item.item1 +"\t"+ item.item2 +"\t"+ item.item3;
    }

    and the list will be:

    < s:List id = "myList" width = "100%" height = "100%" dataProvider = "{cList}" = "displayLData" labelFunction > < / s:list >

    to make it work, the data display

    But what if I want to send the data to a text field 4 diferent?

    I tried, but it does not work

    private void selectResult(event:SQLEvent):void {}
    var searchRes:SQLResult = stmt.getResult ();
    cList = new ArrayCollection (searchRes.data);
    If (searchRes.data! = null) {}
    idSt = searchRes.data.id;
    item1St = searchRes.data.item1;
    item2St = searchRes.data.item2;
    item3St = searchRes.data.item3;
    }
    }

    any help?

    I try this way and it works fine:

    private void selectResult(event:SQLEvent):void {}

    var searchRes:SQLResult = stmt.getResult ();

    cList = new ArrayCollection (searchRes.data);

    If (searchRes.data! = null) {}

    cidSt = cSList.getItemAt (0) user.user;

    item1St = cSList.getItemAt (0) .item1;

    item2St = cSList.getItemAt (0) .item2;

    item3St = cSList.getItemAt (0) .item3;

    }

    }

    the cList, item1St, cidSt, item2St, item3St are declared [bindable]

    and I use labels in order to link the etc. can also be made directly to the label:

    If (searchRes.data! = null) {}

    myLbl1.text = cSList.getItemAt (0) user.user;

    myLbl2.text = cSList.getItemAt (0) .item1;

    myLbl3.text = cSList.getItemAt (0) .item2;

    myLbl4.text = cSList.getItemAt (0) .item3;

    }

    anyawys thanks for you response that helps a lot.

  • Working with date and time of the request for help from acrobat JavaScript...

    This coming from

    Working with date and time in Acrobat JavaScript (part 1 of 3)

    The following code adds five days to the current date, and then prints the new date in the console window.

    Get the date and time

    var rightNow = new Date();

    Get the value of millisecond

    Article date

    var msRightNow = rightNow.getTime ();

    Calculate in milliseconds, of 5 days

    5 days x 24 hours/day x 60 min / h x 60 s / min x 1000 ms/s

    Challenge of var = 5 * 24 * 60 * 60 * 1000;

    Do the calculation of var CFAbsoluteTime = msRightNow + challenge;

    Create a new Date from the calculated value

    var theNewDate = new Date (finalTime);

    In the actual work on a form code, you'll want to place the

    the object of a field value. But since this is test code, we will

    Print the result to the Console window (great for debugging)

    Console.println ("5 days from now is:" + theNewDate.toString ());

    The foregoing is the exact code (cut and paste)

    The error I get here is;

    ReferenceError: theNewDate is not defined

    1:Console:exec

    undefined

    To get the "undefined" question a lot... it seems to me, learn to distinguish the undefined 'of type' undefined 'variable' and undefined 'value '.

    in this case 'theNewDate' seems to be defined as a variable equal to the current date plus 5 days... BUT I am now "educated" enough to 'see' Why am I getting the error...


    Any thoughts... Any who...

    You need to highlight all the text that you want to run.

    You have not set the rightNow variable before you can apply a method to the variable.

    You can just add a new variable as msRightNow name. Why not use rightNow.

    Executes the code that you provided with a new departure of Acrobat, I get the following error messages:

    rightNow.getTime is not a function

    1:Console:exec

    TypeError: rightNow.getTime is not a function

    1:Console:exec

    undefined

    What you are showing probably works because your previous attempts have left behind them a variable "rightNow" and as long as you do not have the object of time date change too much, you will not notice the error.

    Cleaning of your code:

    get the number of milliseconds of the date object.

    rightNow var = (new Date()) .getTime ();

    define 5 days in milliseconds;
    Challenge of var = 5 * 24 * 60 * 60 * 1000;

    Add 5 days to the value of this moment and assign the result to the last time;
    var CFAbsoluteTime = rightNow + challenge;

    convert finalTime value in a date object.
    var theNewDate = new Date (finalTime);

    display the result;
    Console.println ("5 days from now is:" + theNewDate.toString ());

    Have you tried the code that I provided, it is another way to add days to the date object.

  • ORA-04063: display error

    Hello guys,.

    When I try to open the view in sql developer. I ORA-04063: discovers ". POSTRACK_TR error WIZARD_SURVEY. The SQL code of the view is down, I don't understand what the problem is. I just met this kind of mistake. You have an idea? What should I do?
    CREATE OR REPLACE FORCE VIEW "POSTRACK_TR"."WIZARD_SURVEY" ("SURVEY_TYPE", "GROUPNAME", "MAIN_ORDER", "SUBGROUPNAME", "SUB_ORDER", "QUESTION", "QUESTION_ORDER", "QUESTION_TYPE_NAME", "QUESTION_REQUIRED", "ANSWERS_TYPE", "CATEGORY", "SUB_CATEGORY", "BRAND", "SKU", "BARCODE", "FLAVOR", "PRODUCT_FAMILY", "PACKAGETYPE", "SUPPLIER", "FACTOR", "QUESTION_UID")
    AS
      SELECT DISTINCT sut.survey_type,
        mg.groupname,
        mg.order_number AS main_order,
        sg.subgrouptext AS subgroupname,
        --sgd.sub_order,
        q.question,
        qd.order_number AS question_order,
        qt.question_type_name,
        qd.question_required,
        AT.answers_type,
        c.category ,
        sc.sub_category,
        b.brand,
        sk.sku,
        sk.barcode,
        f.flavor,
        pf.product_family,
        pt.packagetype,
        sp.supplier,
        cs.factor,
        qd.question_uid
      FROM survey_types sut,
        question_def qd,
        main_groups_def mg,
        subgroups sg,
        --sub_groups_def sgd,
        questions q,
        question_type qt,
        answers_types AT,
        categories_suppliers cs,
        categories c,
        sub_categories sc,
        brands b,
        skus sk,
        flavors f,
        product_families pf,
        package_types pt,
        suppliers sp
      WHERE mg.group_id = qd.main_group_id
      AND sg.subgroupid = qd.sub_group_id
        --AND sgd.sub_group_id        = qd.sub_group_id
        --AND sgd.main_group_id       = qd.main_group_id
      AND q.questionid            = qd.question_id
      AND qt.question_type_id     =qd.question_type_id
      AND AT.answers_type_id      = qd.answer_type_id
      AND cs.question_uid(+)      = qd.question_uid
      AND c.category_id(+)        = cs.category_id
      AND sc.sub_category_id(+)   = cs.sub_category_id
      AND b.brand_id(+)           = cs.brand_id
      AND sk.barcode(+)           = cs.barcode
      AND f.flavor_id(+)          = cs.flavor_id
      AND pf.product_family_id(+) = cs.product_family_id
      AND pt.packagetype_id(+)    = cs.packagetype_id
      AND sp.supplier_id(+)       = cs.supplier_id
      AND ((mg.belongto1          =1
      AND qd.belongto1            = 1
      AND sut.survey_type_id      = 1)
      OR ( mg.belongto2           =1
      AND qd.belongto2            = 1
      AND sut.survey_type_id      = 2)
      OR ( mg.belongto3           =1
      AND qd.belongto3            = 1
      AND sut.survey_type_id      = 3)
      OR ( mg.belongto4           =1
      AND qd.belongto4            = 1
      AND sut.survey_type_id      = 4)
      OR ( mg.belongto5           =1
      AND qd.belongto5            = 1
      AND sut.survey_type_id      = 5)
      OR ( mg.belongto6           =1
      AND qd.belongto6            = 1
      AND sut.survey_type_id      = 6)
      OR ( mg.belongto7           =1
      AND qd.belongto7            = 1
      AND sut.survey_type_id      = 7)
      OR ( mg.belongto8           =1
      AND qd.belongto8            = 1
      AND sut.survey_type_id      = 8)
      OR ( mg.belongto9           =1
      AND qd.belongto9            = 1
      AND sut.survey_type_id      = 9)
      OR ( mg.belongto10          =1
      AND qd.belongto10           = 1
      AND sut.survey_type_id      = 10)
      OR (mg.belongto11           =1
      AND qd.belongto11           = 1
      AND sut.survey_type_id      = 11)
      OR ( mg.belongto12          =1
      AND qd.belongto12           = 1
      AND sut.survey_type_id      = 12)
      OR ( mg.belongto13          =1
      AND qd.belongto13           = 1
      AND sut.survey_type_id      = 13)
      OR ( mg.belongto14          =1
      AND qd.belongto14           = 1
      AND sut.survey_type_id      =14)
      OR ( mg.belongto15          =1
      AND qd.belongto15           = 1
      AND sut.survey_type_id      = 15) )
      ORDER BY sut.survey_type,
        mg.order_number,
        --sgd.sub_order,
        qd.order_number;
    In addition, when I type wizard_survey desc, it gives very interesting power?
    desc wizard_survey
    Name               Null Type        
    ------------------ ---- ----------- 
    SURVEY_TYPE             UNDEFINED() 
    GROUPNAME               UNDEFINED() 
    MAIN_ORDER              UNDEFINED() 
    SUBGROUPNAME            UNDEFINED() 
    SUB_ORDER               UNDEFINED() 
    QUESTION                UNDEFINED() 
    QUESTION_ORDER          UNDEFINED() 
    QUESTION_TYPE_NAME      UNDEFINED() 
    QUESTION_REQUIRED       UNDEFINED() 
    ANSWERS_TYPE            UNDEFINED() 
    CATEGORY                UNDEFINED() 
    SUB_CATEGORY            UNDEFINED() 
    BRAND                   UNDEFINED() 
    SKU                     UNDEFINED() 
    BARCODE                 UNDEFINED() 
    FLAVOR                  UNDEFINED() 
    PRODUCT_FAMILY          UNDEFINED() 
    PACKAGETYPE             UNDEFINED() 
    SUPPLIER                UNDEFINED() 
    FACTOR                  UNDEFINED() 
    QUESTION_UID            UNDEFINED() 
    Thanks for your help.

    Published by: 944258 on 11:43 11.Tem.2012

    944258 wrote:
    CREATE OR REPLACE VIEW "POSTRACK_TR" of the FORCE . "" WIZARD_SURVEY ".

    FORCE means create view even if it contains errors. To check what errors are either remove FORCE or, in SQL * more the question:

    SEE ERR WIZARD_SURVEY VIEW

    Or question:

    SELECT * FROM ALL_ERRORS
    WHERE OWNER = "POSTRACK_TR" and NAME = "WIZARD_SURVEY" AND the TYPE = "DISPLAY";

    SY.

  • "Success" option not available to change a blank slide with 5.5?

    You create a module in adobe captivate 5.5 or earlier to version with a blank slide at the end.

    You use the option "on success" of this blank slide to branch to another module.

    You do not use the buttons with the skin or other.

    You save the module in 5.5 and return later for her.

    Why the option "to success" is no longer available on the blank slide to change the name of the URL?

    You can see the option "to success' listed by the URL listed for this slide in the"Advanced"but Interaction where you can go to edit this URL?

    If you go to 'Properties' to this slide the option 'Success' is not listed.

    Hello

    It is very strange, I've never seen action at the level of the slide that you have in the view of Advanced Interaction. Even if you have an action on the input (or output) is not specified there. Reason is that this Panel displays only all kinds of inventoried items (click boxes, buttons, TEB, interactive widgets and question slides.) Events on entering and leaving the slides are not identified, cannot be displayed here. This Board is read only, no way to change something not like the URL, and I also doubt that it will have effect. I think something is corrupted here.

    Maybe say "when" you want to display the URL? If the right input on the second slide (in your example), add this action to the event on enter to this slide. There is already a similar action triggered by the button on the first slide (same as the 'Phantom' action). If you know what you want to achieve, maybe we can help.

    Lilybiri

  • Delete lines matching quiz?

    (Sorry for the slight overlap discussion but http://forums.adobe.com/message/3560229 not responding to the question).

    Using Captivate 5. I have a question in a quiz where the letters of the menu drop-down will match a list of 5 possible answers.  Each drop-down list item corresponds to an area of an image (from model slides) and all 5 drop-down lists must be on a slide.  Here's a look at a simplified version:

    Screen shot 2011-08-25 at 3.52.43 PM.png

    It would be perfect if I could make transparent lines or white at least?  Or is there another way to do it with drop-down lists so that they will have to choose one of the items (Congress, FLHP, etc.) but not force them to choose one at a time separate issues?

    Thank you!!

    Hello

    As far as I know, you can not change the lines in question to matching slides. I searched in the object styles, but anywhere they are found. And quiz objects being always on the top, you can't hide them with a drawing either object.

    Should you report the score? It is possible to create your own question with the drop-down list widgets or combobox slides. I had planned to treat these widget in the third part of my series with widgets Custom questions, but it did not yet. The reason is that I had far too many questions about the possibility for dozens of report of this kind of question slides, so I started with that. To report this kind of question slides with static widgets is explained here:

    Custom report issues - part 2

    You will find on my blog of the examples with other static widgets (TextArea, radio buttons, check boxes) but not yet with the list drop-down/combobox widgets.

    Lilybiri

  • Widget Sqlite using a packaged .sqlite file?

    If I have a sqlite database must be installed with my widget on the package, how to access these data in the widget? I read that the documentation of gears and 'fix' and 'Detach' commands are the two people with reduced mobility?

    You will not be able to distribute a database SQLite pre-packaged with your application.  All data transmissions are encrypted on the device and cannot be replaced.

    You will need to build your database through JavaScript.  For your data by default, you can incorporate XML files in your widget and then loop through them to feed your database in a worker thread.

  • I have a question if someone is there. I have build an interactive site and have problems with the presentation widget?

    I am creating an interactive website for a client developer. We are eager to build an interactive site where a potential buyer can see the rendering of the image of the kitchen and choose different finishes (floors, counters, backsplash ect.). I use the widget presentation stacked for interactivity. For example, the cabinets are all in a widget. The second widget contains the upper part of the counter. The third widget will contain the floors. All targets of widgets are stacked with various components of rendering and triggers are more towards the left to graphically create a kiosk. I have a question when I look in a preview of the browser. Sometimes the trigger buttons work and some times they do not have. They don't seem to be any rhyme or reason to it. I need help! Someone has an idea?

    Thank you

    DJ

    DjElohim03 wrote:

    Is it possible that I could put all my layers on top of the original kitchen render and use States to reversal or clicking to give me the functionality I need?

    Demo host

    You must understand that triggers and targets are different... the triggers can be inside the goals as long as they do not belong in other triggers

  • Question about cart Counter and position header J-26 of the widget in Muse conflict

    I recently purchased the award-winning J - 26 ecwid widget. I must say handguns are a beautiful set of enhancements and tools design for Muse. The conflict in question is the Cart counter Widget. I corresponded with the promoter to get this resolved and I was wondering if someone had this problem; As far as I know, this widget was designed to work with the store to trade Ecwid. (You must ask the developer if there are others) When the "Meter of Cart" widget is placed in the header of my page on a master page of cart or basket, I can't work properly. It could be something I'm not set up correctly or something else. But when the widget is placed under the header, it seems to work. The problem above the header area is that the counter disappears and does not make the connection with the store ecwid or something? I'm not sure. I am currently using a widget of J - 26 called a light cart followed the v2.3.1 and works very well in the position of the header. So all that being said, is there anyone who has tried the trolley counter in the header that works? Added note: I created a site skeleton with a connection to my storefront as a tester site, thinking that maybe there was a code problem. After bad and without success, I gave up. Currently, I'm looking for a work around to make a secondary master page for the storefront and to build a fake header move real heading to zero, so I can place the counter of trolley in the body of the page. Even with that there are a few problems.

    If anyone has had this same problem, please let me know, or better yet if you have a workaround or some instructions on how to make it work just in case it might be something I do not correctly.

    Again, the widgets are a great addition and I rent the developer for these. Any person who sets up an ecommerce site and wants to mark their page with many options, check on widgets. Well done.

    Ben

    Bravo for the professionalism of J - 26. After a repair my muse files, the developer of J - 26 set to update some of the widgets behave nicely with MUSE. Yet if you look at my first post here, award-winning J-26 ecwid widgets are well worth your efforts. Especially when developers are willing to look at the questions that pop up... and offer a solution! There are a few questions, I have about some of the settings, but all-in-all the characteristics fixed it are resolved.

    I give J - 26 an A +.

    Thank you

    Ben

  • Newbie question: Widgets in general

    Hello

    I just installed Adobe Muse CC Trial to test and see if it's the right tool for prototyping Web site and web applications.

    It appeared to me that he doesn't seem to be the right tool for this. I have not found it intuitive and easy to use.

    The widget library is much too short and it contains only complex widgets. What I need is just simple (e.g. input field text, labels, icons, checkbox, radio button, list box, select list and so on).

    Maybe I'm too harsh on Muse, but I couldn't find a trivial way to drag these widgets and build the layout.

    I know that we have the forms, but I cannot copy and paste items (e.g. input field)! (WHY?)

    I really want to believe that Muse is an impressive tool, but it is not intuitive and easy to use.

    I ask the community for help on this issue. Could someone give me some advice on the drag and Drop of the above simple widgets?

    Thank you very much!

    Best regards

    Hello.

    Your question is not entirely clear. However, I think that you do not give credit MUSE, he needs, or use it for what it was built. It is not, IMO, for web prototyping applications.

    That being said, a lot of things that you need can be created by adding one of the standard widgets, edit and styling it to your needs and then saving them in your library for later use (entry for example, icons, check box, option button)

    You can make the drop-down selection lists as I know, but you can simulate a drop-down list by using the ToolTip widget for example.

    There are also tons of third party widgets that you can use, which have extended functionality and style before, for example Adobe Muse drop-down list Widget of MuseThemes

    The Adobe MAX a few weeks back, a prototyping app was shown it is going to be exactly what you're looking for: User experience, prototyping and design app | Adobe project Comet

    hope this helps

    Jorge

  • The basic question, but how can I get a third pary widget in muse

    I'm really embarrassed to be asking this question, but how do I get a third free or paid for the widgets in Muse.  I've lost hours trying to do and I'm sure it's myself, but I can't see it.    I downloaded the area under the team tab and classic tab box, but there is no way I can not install them in the library of widgets or place them on one of the pages of my site.  If I had hair left I would be pulling it.

    Any help would be appreciated.

    Download the widget and double-click it.

Maybe you are looking for

  • Hardware configuration will not work under Windows 8

    Hello guys,.I'm here because I can't get the hardware configuration (v. 1.63.1.34C) working with Windows 8.I would like to know if there is a recent version more or a way to get the program to work.I can install it, yet when I open it, it just won't

  • Satellite U400-10J - XP drivers does not

    Hello I have a problem with my Mr. U400-10J I downgraded Vista to windows XP Home laptop. I have downloaded all Windows XP drivers for this model and that you have installed all the drivers. But I can t seem to find the drivers for the 3 components.

  • How to completely uninstall a pc printer driver or any general reader?

    I have windows 7 laptop and I want to uninstall my printer or say its driver completely and then reinstall it back but the problem here is that when I remove the printer from devices and printers and press refresh it come around again and so I'll hav

  • Setting up of Smartphones blackBerry signing of Email with corporate email

    Where should I enter your email signature information? I surfed and found it should be under 'options', 'email', but under my options, I don't have the e-mail option? Any help would be greatly appreciated! Thank you in advance!

  • MX200 and MX300

    Hello team, MX200 and MX300 Codec used is C series or a new codec is here.