Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Tags
    3. decoder
    Log in to post

    • SOLVED How to set GL_LINEAR as default on QOpenGLFramebufferObject ?
      Mobile and Embedded • android opengl scale decoder hw acceleration • • delamor  

      2
      0
      Votes
      2
      Posts
      395
      Views

      If found the way by myself, if this can help to someone, is a question of attaching the texture again and change it before the fbo generation. Like: ``` glBindTexture(GL_TEXTURE_2D, d->fbo->texture()); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); // Linear Filtering glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); // Linear Filtering
    • UNSOLVED QVideoFrame bits() access too slow
      General and Desktop • video qvideoframe decoder • • HAWK0044  

      4
      0
      Votes
      4
      Posts
      1243
      Views

      Then it sounds like a regression… Can you check against the latest 5.7 to see if it still happens ?
    • cross compiling mpg123 on AM335x
      Mobile and Embedded • qt4.8.5 mp3 decoder am335 • • vk41286  

      4
      0
      Votes
      4
      Posts
      1251
      Views

      "Linux itself" is a bit broad. Is it Ubuntu based ? Debian based ? Something completely custom ? Does it use a package manager ?
    • Qt Multimedia and custom decoder
      General and Desktop • multimedia decoder ffmpeg • • Lectem  

      3
      0
      Votes
      3
      Posts
      1330
      Views

      Hi and welcome to devnet, You can implement a QtMultimedia backend that will use ffmpeg to read your video source or maybe the QtAV project might be of interest. Hope it helps