Skip to content
Snippets Groups Projects
  1. Feb 01, 2025
    • Fatih Uzunoğlu's avatar
      qml: use reasonable source size for delegate images · 020b3c8b
      Fatih Uzunoğlu authored and Steve Lhomme's avatar Steve Lhomme committed
      Delegate images are meant to be cached, and put in the
      atlas. We have to use a reasonable size otherwise they
      can easily spoil the cache.
      
      Currently source size is used as worst case (the largest
      the image can be), but most of the time the interface
      window size is wide enough to display multiple items,
      where in that case item size is not as large as the
      worst case.
      
      Granted this will make images have poorer quality when
      the interface has such a size that only one/two items are
      visible per row, as then the items would scale up to use
      the all available width. However, it needs to be balanced.
      
      I propose using the average case and not the worst case
      for the source size. I propose that we determine the
      average (nbItemPerRow) to be 3 for the moment. This means
      that we target the optimal quality when there are at least
      three items displayed per row and not less.
      
      I used the formula provided in the comments, one line above.
      020b3c8b
    • Fatih Uzunoğlu's avatar
      093cb463
    • Fatih Uzunoğlu's avatar
      qml: fix promise `then()` never called in `PlaylistMediaList.qml` · a8424fd7
      Fatih Uzunoğlu authored and Steve Lhomme's avatar Steve Lhomme committed
      This causes the cursor to remain busy forever.
      a8424fd7
    • Fatih Uzunoğlu's avatar
      qml: prevent assigning intermediate value to source size in `MusicArtistDelegate.qml` · 32a0be32
      Fatih Uzunoğlu authored and Steve Lhomme's avatar Steve Lhomme committed
      Partially changing a value type changes the whole value. In
      image case, this means that the images can get re-loaded with
      indeterminate size just to discard them after the size is
      determined.
      
      Fortunately this does not happen currently, because the sizes
      are determined before the component is complete and QQuickImage
      only loads if the component is complete.
      
      However, due to the declarative nature of QML, bindings are
      evaluated and assigned one by one, this means that source size
      would be changed two times even if .width and .height are
      pending re-evaluation at the same time (such as both depend on
      DPR). At the same time, the order is also not defined, so
      with such a setup as following:
      
      sourceSize.width: width * eDPR
      sourceSize.height: height * eDPR
      
      When eDPR changes, Qt evaluates the binding for width or height,
      adjusts sourceSize, sourceSize changes and change signal is signalled,
      then evaluates the other sub-part of the value type (width or height),
      adjusts sourceSize, sourceSize changes again and change signal is
      signalled. Qt could technically optimize this, but as of Qt 6.8.1
      it is not the case.
      
      Meanwhile with the following:
      
      sourceSize: Qt.size(width * eDPR, height * eDPR)
      
      When eDPR changes, Qt evaluates the binding and adjusts the source
      size, sourceSize changes and change signal is signalled. Source size
      does not change two times, and the image would not be loaded two
      times.
      32a0be32
    • Fatih Uzunoğlu's avatar
      qml: prevent assigning intermediate value to source size in `MusicAlbumsGridExpandDelegate.qml` · 73066495
      Fatih Uzunoğlu authored and Steve Lhomme's avatar Steve Lhomme committed
      Partially changing a value type changes the whole value. In
      image case, this means that the images can get re-loaded with
      indeterminate size just to discard them after the size is
      determined.
      
      Fortunately this does not happen currently, because the sizes
      are determined before the component is complete and QQuickImage
      only loads if the component is complete.
      
      However, due to the declarative nature of QML, bindings are
      evaluated and assigned one by one, this means that source size
      would be changed two times even if .width and .height are
      pending re-evaluation at the same time (such as both depend on
      DPR). At the same time, the order is also not defined, so
      with such a setup as following:
      
      sourceSize.width: width * eDPR
      sourceSize.height: height * eDPR
      
      When eDPR changes, Qt evaluates the binding for width or height,
      adjusts sourceSize, sourceSize changes and change signal is signalled,
      then evaluates the other sub-part of the value type (width or height),
      adjusts sourceSize, sourceSize changes again and change signal is
      signalled. Qt could technically optimize this, but as of Qt 6.8.1
      it is not the case.
      
      Meanwhile with the following:
      
      sourceSize: Qt.size(width * eDPR, height * eDPR)
      
      When eDPR changes, Qt evaluates the binding and adjusts the source
      size, sourceSize changes and change signal is signalled. Source size
      does not change two times, and the image would not be loaded two
      times.
      73066495
    • Fatih Uzunoğlu's avatar
      qml: prevent assigning intermediate value to source size in `MediaCover.qml` · cec6daa9
      Fatih Uzunoğlu authored and Steve Lhomme's avatar Steve Lhomme committed
      Partially changing a value type changes the whole value. In
      image case, this means that the images can get re-loaded with
      indeterminate size just to discard them after the size is
      determined.
      
      Fortunately this does not happen currently, because the sizes
      are determined before the component is complete and QQuickImage
      only loads if the component is complete.
      
      However, due to the declarative nature of QML, bindings are
      evaluated and assigned one by one, this means that source size
      would be changed two times even if .width and .height are
      pending re-evaluation at the same time (such as both depend on
      DPR). At the same time, the order is also not defined, so
      with such a setup as following:
      
      sourceSize.width: width * eDPR
      sourceSize.height: height * eDPR
      
      When eDPR changes, Qt evaluates the binding for width or height,
      adjusts sourceSize, sourceSize changes and change signal is signalled,
      then evaluates the other sub-part of the value type (width or height),
      adjusts sourceSize, sourceSize changes again and change signal is
      signalled. Qt could technically optimize this, but as of Qt 6.8.1
      it is not the case.
      
      Meanwhile with the following:
      
      sourceSize: Qt.size(width * eDPR, height * eDPR)
      
      When eDPR changes, Qt evaluates the binding and adjusts the source
      size, sourceSize changes and change signal is signalled. Source size
      does not change two times, and the image would not be loaded two
      times.
      cec6daa9
    • Fatih Uzunoğlu's avatar
      qml: prevent assigning intermediate value to source size in `BannnerCone.qml` · 426d5085
      Fatih Uzunoğlu authored and Steve Lhomme's avatar Steve Lhomme committed
      Partially changing a value type changes the whole value. In
      image case, this means that the images can get re-loaded with
      indeterminate size just to discard them after the size is
      determined.
      
      Fortunately this does not happen currently, because the sizes
      are determined before the component is complete and QQuickImage
      only loads if the component is complete.
      
      However, due to the declarative nature of QML, bindings are
      evaluated and assigned one by one, this means that source size
      would be changed two times even if .width and .height are
      pending re-evaluation at the same time (such as both depend on
      DPR). At the same time, the order is also not defined, so
      with such a setup as following:
      
      sourceSize.width: width * eDPR
      sourceSize.height: height * eDPR
      
      When eDPR changes, Qt evaluates the binding for width or height,
      adjusts sourceSize, sourceSize changes and change signal is signalled,
      then evaluates the other sub-part of the value type (width or height),
      adjusts sourceSize, sourceSize changes again and change signal is
      signalled. Qt could technically optimize this, but as of Qt 6.8.1
      it is not the case.
      
      Meanwhile with the following:
      
      sourceSize: Qt.size(width * eDPR, height * eDPR)
      
      When eDPR changes, Qt evaluates the binding and adjusts the source
      size, sourceSize changes and change signal is signalled. Source size
      does not change two times, and the image would not be loaded two
      times.
      426d5085
    • Fatih Uzunoğlu's avatar
      qml: prevent assigning intermediate value to source size in `AtoBButton.qml` · 7adbf332
      Fatih Uzunoğlu authored and Steve Lhomme's avatar Steve Lhomme committed
      Partially changing a value type changes the whole value. In
      image case, this means that the images can get re-loaded with
      indeterminate size just to discard them after the size is
      determined.
      
      Fortunately this does not happen currently, because the sizes
      are determined before the component is complete and QQuickImage
      only loads if the component is complete.
      
      However, due to the declarative nature of QML, bindings are
      evaluated and assigned one by one, this means that source size
      would be changed two times even if .width and .height are
      pending re-evaluation at the same time (such as both depend on
      DPR). At the same time, the order is also not defined, so
      with such a setup as following:
      
      sourceSize.width: width * eDPR
      sourceSize.height: height * eDPR
      
      When eDPR changes, Qt evaluates the binding for width or height,
      adjusts sourceSize, sourceSize changes and change signal is signalled,
      then evaluates the other sub-part of the value type (width or height),
      adjusts sourceSize, sourceSize changes again and change signal is
      signalled. Qt could technically optimize this, but as of Qt 6.8.1
      it is not the case.
      
      Meanwhile with the following:
      
      sourceSize: Qt.size(width * eDPR, height * eDPR)
      
      When eDPR changes, Qt evaluates the binding and adjusts the source
      size, sourceSize changes and change signal is signalled. Source size
      does not change two times, and the image would not be loaded two
      times.
      7adbf332
    • Fatih Uzunoğlu's avatar
      qml: prevent assigning intermediate value to source size in `ArtistTopBanner.qml` · cf11d530
      Fatih Uzunoğlu authored and Steve Lhomme's avatar Steve Lhomme committed
      Partially changing a value type changes the whole value. In
      image case, this means that the images can get re-loaded with
      indeterminate size just to discard them after the size is
      determined.
      
      Fortunately this does not happen currently, because the sizes
      are determined before the component is complete and QQuickImage
      only loads if the component is complete.
      
      However, due to the declarative nature of QML, bindings are
      evaluated and assigned one by one, this means that source size
      would be changed two times even if .width and .height are
      pending re-evaluation at the same time (such as both depend on
      DPR). At the same time, the order is also not defined, so
      with such a setup as following:
      
      sourceSize.width: width * eDPR
      sourceSize.height: height * eDPR
      
      When eDPR changes, Qt evaluates the binding for width or height,
      adjusts sourceSize, sourceSize changes and change signal is signalled,
      then evaluates the other sub-part of the value type (width or height),
      adjusts sourceSize, sourceSize changes again and change signal is
      signalled. Qt could technically optimize this, but as of Qt 6.8.1
      it is not the case.
      
      Meanwhile with the following:
      
      sourceSize: Qt.size(width * eDPR, height * eDPR)
      
      When eDPR changes, Qt evaluates the binding and adjusts the source
      size, sourceSize changes and change signal is signalled. Source size
      does not change two times, and the image would not be loaded two
      times.
      cf11d530
    • Fatih Uzunoğlu's avatar
      qml: prevent assigning intermediate value to source size in `VideoInfoExpandPanel.qml` · a25a34da
      Fatih Uzunoğlu authored and Steve Lhomme's avatar Steve Lhomme committed
      Partially changing a value type changes the whole value. In
      image case, this means that the images can get re-loaded with
      indeterminate size just to discard them after the size is
      determined.
      
      Fortunately this does not happen currently, because the sizes
      are determined before the component is complete and QQuickImage
      only loads if the component is complete.
      
      However, due to the declarative nature of QML, bindings are
      evaluated and assigned one by one, this means that source size
      would be changed two times even if .width and .height are
      pending re-evaluation at the same time (such as both depend on
      DPR). At the same time, the order is also not defined, so
      with such a setup as following:
      
      sourceSize.width: width * eDPR
      sourceSize.height: height * eDPR
      
      When eDPR changes, Qt evaluates the binding for width or height,
      adjusts sourceSize, sourceSize changes and change signal is signalled,
      then evaluates the other sub-part of the value type (width or height),
      adjusts sourceSize, sourceSize changes again and change signal is
      signalled. Qt could technically optimize this, but as of Qt 6.8.1
      it is not the case.
      
      Meanwhile with the following:
      
      sourceSize: Qt.size(width * eDPR, height * eDPR)
      
      When eDPR changes, Qt evaluates the binding and adjusts the source
      size, sourceSize changes and change signal is signalled. Source size
      does not change two times, and the image would not be loaded two
      times.
      a25a34da
    • Fatih Uzunoğlu's avatar
      qml: re-layout when implicit height of menu bar changes in `TopBar.qml` · 2a0f7735
      Fatih Uzunoğlu authored and Steve Lhomme's avatar Steve Lhomme committed
      This fixes the layouting issue where the cone bar overlaps with the
      menu bar when the page changes (such as, switching to player view).
      2a0f7735
    • Fatih Uzunoğlu's avatar
      qt: introduce setting `qt-pip-mode` · 80868bba
      Fatih Uzunoğlu authored and Steve Lhomme's avatar Steve Lhomme committed
      This setting allows disabling picture-in-picture mode.
      80868bba
    • Alexandre Janniaux's avatar
      clock: dump more metrics in traces · c9acd8a0
      Alexandre Janniaux authored and Steve Lhomme's avatar Steve Lhomme committed
      This adds the clock context id metric which allows tracking some of the
      lipsync issues by checking every contexts are switching to the new
      context reliably. In this patch, clock->context can be null, but in
      future work it will never be NULL.
      
      This also setup a new tag on traces exposed by TraceRender to separate
      the metrics where ts is the current time and metrics where ts is a time
      provided by the tracer user. The rationale is that some systems cannot
      render non-monotonic metrics and the time at which the event appear is
      more important than the value of the timestamp, which should be traced
      separately.
      c9acd8a0
    • Alexandre Janniaux's avatar
      es_out: report buffering in traces · 0296836c
      Alexandre Janniaux authored and Steve Lhomme's avatar Steve Lhomme committed
      This reports the buffering level (in ms) from the input clock in the
      traces, which is useful to analyze artifacts generated by the access or
      the input mainloop, as well as the startup condition.
      0296836c
    • Alexandre Janniaux's avatar
      input_clock: report buffering to es_out · 79b30239
      Alexandre Janniaux authored and Steve Lhomme's avatar Steve Lhomme committed
      This reports the buffering level (in ms) from the input clock in the
      es_out, so that the core can track the buffering level in the current
      playback.
      
      The es_out is currently only using the value if positive to trigger a
      rebuffering. Previous <= 0 values were discarded.
      79b30239
    • Alexandre Janniaux's avatar
      input: decoder: trace decoder wait · 6115dab8
      Alexandre Janniaux authored and Steve Lhomme's avatar Steve Lhomme committed
      
      The events are tracing when decoders are ready for the input to start,
      providing details on why the playback startup is being delayed.
      
      Co-authored-by: default avatarThomas Guillem <thomas@gllm.fr>
      6115dab8
  2. Jan 31, 2025
  3. Jan 30, 2025
    • Marvin Scholz's avatar
      macosx: use correct variable names for actual arch · b202da71
      Marvin Scholz authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      This is used in other places in the script and if unset leads to the
      `-arch` argument being passed without any architecture, which is invalid
      and causes compiler invocations to fail.
      
      The reason this worked in CI is that the build script overwrites the
      ACTUAL_HOST_ARCH as it can be changed by an argument. However the
      env.build.sh script is used also outside the build.sh script in
      manual build scenarios, which is the whole reason it is a separate
      script to begin with.
      b202da71
    • Alexandre Janniaux's avatar
      logger: add telegraf tracer · e8e46b0d
      Alexandre Janniaux authored
      The tracer is designed to send the metrics towards a telegraf server
      using this kind of configuration:
      
          [[inputs.socket_listener]]
          service_address = "tcp://localhost:8094"
      
      The telegraf server can then forward the metrics towards an influxdb
      server for monitoring or directly to grafana live server[^1] for
      introspection.
      
      The influxdb database can also be used to query the metrics after
      they've been indexed.
      
      The application using the tracer can use the VLC_TELEGRAF_ENDPOINT
      environment variable (eg. VLC_TELEGRAF_ENDPOINT=tcp://127.0.0.1:8094)
      to set where the tracer will output the traces to.
      
      A bunch of notes and improvement left for later:
      
       - Unsafe code is still used for accessing the fields data since an
         union is used and union access is unsafe. It could probably be
         wrapped from the binding implementation.
      
       - There is no way to specify the address using the configuration
         since vlc_variable is not bound to the Rust bindings and no
         unsafe extern "C" code is done from the plugin.
      
       - The tracer currently panic as the telegraf server dies because it
         doesn't handle reconnection. Proper reconnection logic with maybe
         size-limited temporary storing might be a proper workaround for that.
      
       - The tracer doesn't use the timestamp provided by VLC right now,
         proper time conversion is required for it to work.
      
       - There's no proper tags for the metrics being sent, which is an
         issue given that tags are providing indexing on the data. The
         tags should be generated from the string values of the tracer.
         Maybe an additional "Role" should be added in the trace entry for
         that purpose.
      
      [^1]: https://grafana.com/blog/2021/08/16/streaming-real-time-telegraf-metrics-using-grafana-live/
      e8e46b0d
    • Alexandre Janniaux's avatar
      vlcrs-core: add tracer capability bindings · 3a3b5d67
      Alexandre Janniaux authored
      This commit allows rust code to use the tracer API, through the trace!()
      macro, and also exposes a TracerCapability and TracerModuleLoader to
      create new tracer modules in Rust.
      3a3b5d67
    • Pierre Lamot's avatar
      contrib: run RECONF in dvdnav · fd7e1136
      Pierre Lamot authored and Steve Lhomme's avatar Steve Lhomme committed
      As configure.ac is patched
      fd7e1136
    • Thomas Guillem's avatar
      es_out: remove unused es_cat array · 500b8e2a
      Thomas Guillem authored and Steve Lhomme's avatar Steve Lhomme committed
      Forgot to remove this leftover from 709610a2
      
      EsOutGetFromID() was made obsolete in a88c34e6
      500b8e2a
    • Steve Lhomme's avatar
      vt_utils: fix define checks · 7205d862
      Steve Lhomme authored
      7205d862
    • Steve Lhomme's avatar
      access: dvb: avoid casting callbacks · bbc22577
      Steve Lhomme authored
      bbc22577
    • Steve Lhomme's avatar
      mux: ts: avoid casting callbacks · 73f3e7c5
      Steve Lhomme authored
      73f3e7c5
  4. Jan 29, 2025
Loading