Skip to content

Draft: preparser: use of an external process for preparsing

Gabriel Lafond-Thenaille requested to merge preparser-process-5 into master

This MR improves media parsing stability by isolating the preparser in a dedicated external process (vlc-preparser), using a JSON-based IPC protocol.

  • External preparser process:

    • Creates vlc-preparser as a standalone process to handle parsing requests.
    • Uses JSON messages for IPC between VLC core and vlc-preparser process.
    • Read request on STDIN and print responce in STDOUT.
  • New preparser backend system:

    • Implements module-like interface for the preparser.
    • Maintains compatibility with existing preparser API.
    • Adds VLC_PREPARSER_BACKEND_PROCESS for external process execution and VLC_PREPARSER_BACKEND_THREADS for original implementation.
    • Updates playlist and the medialib thumbnailer to use the process backend.
  • Serialization framework:

    • Implements JSON serialization/deserialization module
  • IPC protocol:

    • Defines formal message format for preparser communication
    • Uses pipes for inter-process communication

Benchmark:

test on linux: Screenshot_From_2025-01-31_12-27-21

/!\ Missing test on windows and macos

Edited by Gabriel Lafond-Thenaille

Merge request reports

Loading