Skip to content
Snippets Groups Projects
  1. Feb 18, 2021
  2. Feb 17, 2021
  3. Feb 16, 2021
  4. Feb 15, 2021
    • Alexandre Janniaux's avatar
      lib: media: wait preparse end before release · 7f19eca5
      Alexandre Janniaux authored
      This is a quick fix for #25296 actually reverting the commit
      a708c988, replacing the Hold/Release
      lifecycle used there by an ad-hoc Hold/Release which actually defer the
      actual release by blocking instead of releasing in the preparser thread.
      
      Indeed, libvlc_media is holding the instance used to create it, though
      it only needs it for preparsing. If the last reference of the media is
      hold by the preparser, libvlc_media will be released by the preparser
      thread and the libvlc_instance potentially released from there too.
      Since killing the libvlc_instance will join the preparser thread, it
      cannot be done from the preparser thread, or would lead to the failure
      detailed in #25296. Written differently, only the final client should
      make use of Hold/Release, directly through the adequate function or
      indirectly through the creation of new objects.
      
      In addition, a708c988 cannot just be
      reverted as it was fixing cases where the libvlc_media_t object were
      released before preparsing is finished, and the libvlc application
      cannot just wait for the preparsing event to arrive since it must still
      typically unlock the event manager and manage subitems.
      
      Ideally, the libvlc_media would just not have a strong reference to the
      libvlc instance, which would allow detaching the libvlc state from the
      libvlccore state, but it cannot be done just yet, since the preparsing
      API must be splitted from libvlc_media first.
      
      Fix #25296
      7f19eca5
    • Alexandre Janniaux's avatar
      gl_common: disable GL_ASSERT_NOERROR in release · dca98917
      Alexandre Janniaux authored
      ...and remove the obsolete comment, the cases have been fixed and should
      be fixed if it happens again.
      
      We don't need "proper event handling" as most errors are coming from
      programmation errors, except in a few tests (like 16bit texture test)
      which have been fixed already.
      dca98917
    • Alexandre Janniaux's avatar
    • Alexandre Janniaux's avatar
      pva: remove trailing characters · d8bdf899
      Alexandre Janniaux authored
      d8bdf899
    • Zhao Zhili's avatar
      mediacodec: fix AMediaCodec.configure failed on some devices · 1cde6c1c
      Zhao Zhili authored and Alexandre Janniaux's avatar Alexandre Janniaux committed
      
      fmt_out.video.i_width/i_height are used in MediaCodec configure.
      They are not set in --no-mediacodec-dr. Some devices require video
      size to be non-zero. For example, Huawei P20 failed with the
      following log:
      
      I ACodec  : In onAllocateComponent create compenent, codec name: OMX.hisi.video.decoder.avc
      E ACodec  : Wrong cropped rect (0, 0, 0, 0) vs. frame (0, 0)
      E ACodec  : [OMX.hisi.video.decoder.avc] configureCodec returning error -22
      
      E NdkMediaCodec: configure: err(-22), failed with format: AMessage(what = 'conf', target = 1) = {
      E NdkMediaCodec:   int32_t encoder = 0
      E NdkMediaCodec:   string mime = "video/avc"
      E NdkMediaCodec:   int32_t max-input-size = 0
      E NdkMediaCodec:   int32_t width = 0
      E NdkMediaCodec:   int32_t height = 0
      E NdkMediaCodec:   int32_t rotation-degrees = 0
      E NdkMediaCodec: }
      
      Signed-off-by: Alexandre Janniaux's avatarAlexandre Janniaux <ajanni@videolabs.io>
      1cde6c1c
    • Tanguy Dubroca's avatar
      demux-run: Add input_source_t to es_out callbacks · 4e8140a7
      Tanguy Dubroca authored and Alexandre Janniaux's avatar Alexandre Janniaux committed
      
      Signed-off-by: Alexandre Janniaux's avatarAlexandre Janniaux <ajanni@videolabs.io>
      4e8140a7
    • Alexandre Janniaux's avatar
      adaptive: BasePeriod: mark getPeriodDuration as override · 2906b93d
      Alexandre Janniaux authored
      Fix the warning:
      
      ../../modules/demux/smooth/playlist/../../adaptive/playlist/BasePeriod.h:49:36: warning: 'getPeriodDuration' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
                      virtual vlc_tick_t getPeriodDuration() const;
                                         ^
      2906b93d
    • Alexandre Janniaux's avatar
      adaptive: AbstractAdapatiationLogic: mark getPeriodDuration as override · e57bd2ac
      Alexandre Janniaux authored
      Fix the warning:
      
      ../../modules/demux/adaptive/logic/AbstractAdaptationLogic.h:51:45: warning: 'updateDownloadRate' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
                      virtual void                updateDownloadRate     (const ID &, size_t, vlc_tick_t);
                                                  ^
      e57bd2ac
    • Alexandre Janniaux's avatar
      adaptive: Segment: mark debug as override · f65953ef
      Alexandre Janniaux authored
      Fix warning:
      
      ../../modules/demux/dash/mp4/../mpd/../../adaptive/playlist/Segment.h:103:30: warning: 'debug' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
                      virtual void debug(vlc_object_t *,int = 0) const;
      f65953ef
    • Alexandre Janniaux's avatar
      libmp4mux: fix zero initialization · 51b69b7f
      Alexandre Janniaux authored
      The first element (initialized here by the = { 0 }) is an array, and
      require braces. To avoid clunky braces, use the designated zero
      initialization with a known simpler field.
      51b69b7f
    • Alexandre Janniaux's avatar
    • Alexandre Janniaux's avatar
      26f60f9d
    • Alexandre Janniaux's avatar
      configure.ac: fix AC_PROG_LEX warning · 824b3d45
      Alexandre Janniaux authored
      With autoconf 2.70, the following warnings are emitted:
      
      configure.ac:56: warning: AC_PROG_LEX without either yywrap or noyywrap is obsolete
      ./lib/autoconf/programs.m4:716: _AC_PROG_LEX is expanded from...
      ./lib/autoconf/programs.m4:709: AC_PROG_LEX is expanded from...
      configure.ac:56: the top level
      
      The documentation[1] of autoconf now states:
      
      > Prior to Autoconf 2.70, AC_PROG_LEX did not take any arguments, and
      > its behavior was different from either of the above possibilities: it
      > would search for a library that defines yywrap, and would set LEXLIB
      > to that library if it finds one. However, if a library that defines
      > this function could not be found, LEXLIB would be left empty and LEX
      > would not be reset. This behavior was due to a bug, but several
      > packages came to depend on it, so AC_PROG_LEX still does this if
      > neither the yywrap nor the noyywrap option is given.
      >
      > Usage of AC_PROG_LEX without choosing one of the yywrap or noyywrap
      > options is deprecated. It is usually better to use noyywrap and define
      > the yywrap function yourself, as this almost always renders the LEXLIB
      > unnecessary.
      
      The behaviour of the argument on autoconf < 2.70 is to ignore the
      argument, so there are no issues with adding the option.
      
      [1] https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.70/html_node/Particular-Programs.html#Particular-Programs
      824b3d45
    • Alexandre Janniaux's avatar
      qsv: avoid displaying NULL · 57994187
      Alexandre Janniaux authored
      57994187
    • Alexandre Janniaux's avatar
      qsv: use ARRAY_SIZE · 21bd29b1
      Alexandre Janniaux authored
      21bd29b1
    • Alexandre Janniaux's avatar
      test: iosvlc: fix -fobjc-arc · 0bfe8803
      Alexandre Janniaux authored
      The -fobjc-arc was defined on CFLAGS whereas the only file compiled is
      an objective-C file, thus it was unused. With the flag moved to
      OBJCFLAGS, ARC is breaking the compilation because of a missing
      __bridge cast.
      0bfe8803
    • Alexandre Janniaux's avatar
      video_filter: Makefile: fix ci_filters's LDFLAGS · c82c9952
      Alexandre Janniaux authored
      The libci_filter_plugin_la_LDFLAGS must always contains the value of
      $(AM_LDFLAGS) since it is at least defined once. Otherwise, automake
      won't automatically define it to $(AM_LDFLAGS) $(LDFLAGS) and the plugin
      won't be built correctly (ie, built as a convenience library because of
      the lack of -rpath definition in LDFLAGS).
      
      In addition, the frameworks were not correctly set for iOS, which was
      not a problem in static build because there is no linkage, nor in
      dynamic build before because the plugin was built as a convenience
      library, thus not linked nor installed to the device with the bundle
      script.
      
      Since the frameworks are mostly common between MacOSX and iOS, just add
      the corresponding OpenGL framework for each target, and define the other
      frameworks out of any automake condition.
      c82c9952
Loading