1. 17 Feb, 2023 4 commits
    • Rename TransformationException to ExportException · c2fdab84
      PiperOrigin-RevId: 510062674
      kimvde committed
    • Update instrumentation to avoid making all constructors public · 54102869
      Previously, any constructors instrumented by Robolectric were made public. This
      caused two types of issues:
      
      1) If Android classes had non-public constructors which were made public and
      added to the Android API, Robolectric allowed tests to incorrectly use the
      constructors on older SDK levels (where they were non-public). This most
      commonly occurs for AccessibiltyEvent and AccessibilityNodeInfo.
      
      2) When reflection was used to instantiate classes that were instrumented by
      Robolectric, all constructors were accessible, which did not match what
      happened when running on an Android test.
      
      Update the instrumentation in Robolectric to prevent making all public
      constructors.
      
      PiperOrigin-RevId: 510049123
      Googler committed
    • Effect: Rename FrameProcessor · cf768329
      Rename FrameProcessor to VideoFrameProcessor, and GlEffectsFrameProcessor to
      DefaultVideoFrameProcessor.
      
      Most changes are semi-mechanical, semi-manual find-replace, preserving case:
      * "FrameProc" -> "VideoFrameProc" (ex. FrameProcessor -> VideoFrameProcessor, and
         FrameProcessingException -> VideoFrameProcessingException)
      * "GlEffectsVideoFrameProc" -> "DefaultVideoFrameProc"
      
      PiperOrigin-RevId: 509887384
      huangdarwin committed
    • Fix some minor nits · 41a03dd8
      PiperOrigin-RevId: 509879029
      andrewlewis committed
  2. 15 Feb, 2023 8 commits
  3. 14 Feb, 2023 5 commits
  4. 13 Feb, 2023 13 commits
  5. 10 Feb, 2023 6 commits
  6. 09 Feb, 2023 1 commit
    • Move VideoBoxesTest.java · ae17da6e
      The existing implementation depends on an internal library (Mp4Slicer) to assert the output. We have removed the dependency on internal library and used golden data to compare the output.
      
      PiperOrigin-RevId: 508401527
      sheenachhabra committed
  7. 14 Feb, 2023 3 commits