Search Results

Search found 5 results on 1 pages for 'cppb'.

Page 1/1 | 1 

  • video player with qt phonon (using python)

    - by cppb
    hi, I am working on Windows xp and am trying to get a simple video player running. I am trying to use Phonon::VideoPlayer module for this. I am connecting the signal as connect(self.player,SIGNAL("finished()"),self.player.deleteLater) and then , when the Play button is pressed, it makes the following call: self.player.play(Phonon.MediaSource("C:\vid.mp4")) But, this doesn't display the video in the video player widget. Neither can I hear audio. Can anyone help?? I tried using different video file formats but no luck.

    Read the article

  • passing a fortran int array to C++ by calling C++ function in fortran

    - by cppb
    hi, I am trying to call a C++ function in FORTRAN subroutine. This C+ function is supposed to update an integer array. Here is a non-working code I wrote. Can someone please let me know what the issue is: ! FORTRAN function that calls a C++ function subroutine my_function() integer(4) ar(*) integer(4) get_filled_ar ! Need correct syntax here. ar = get_filled_ar() end // C++ function: extern "C" { void get_filled_ar(int *ar){ ar[0] = 1; ar[1] = 10; ar[3] = 100; } }

    Read the article

  • accing a fortran 'module' in a 'function defined in some other file

    - by cppb
    hello, I am using fortran 90 I have defined a fortran module in fileA.f as: module getArr double precision a(100) end module getArr The same fileA.f contains a subroutine that uses this module subroutine my_sub use getArr implicit none getArr%a(1) = 10.5 end subroutine In fileB.f, I have a fortrtan function. I am trying to access the value of getArr%a(1) as: double precision function my_func(R) use getArr double precision x x = getArr%a(1) return end But I am getting errors at the compile time. It says it is unable to access the module getArr. How should I declare it?? Thanks

    Read the article

  • number of elements in a static array of a predefined size

    - by cppb
    I have an array like this: int a[100]; I am filling only the first 4 elements in this array: a[0] = 1; a[1] = 2; a[2] = 3; a[3] = 4; When I do sizeof(a)/sizeof(a[0]) it returns 100. Is there a way I can get number of elements to which I have assinged a value and thus filtering out the remaining 96 unassigned elements? thanks

    Read the article

1