diff options
author | softworkz <softworkz@hotmail.com> | 2025-05-16 10:37:29 +0200 |
---|---|---|
committer | softworkz <softworkz@hotmail.com> | 2025-05-16 10:37:29 +0200 |
commit | 79e2a845cd162696c7652bbb6cd407bfa24b738b (patch) | |
tree | 18ab840d63a4f1c241b16a2ca76c537a80d08cb5 /fftools/graph/graphprint.h | |
parent | 505510acdad5bc08b67e01d66c5b339c8fe27d39 (diff) | |
download | ffmpeg-79e2a845cd162696c7652bbb6cd407bfa24b738b.tar.gz |
Revert "fftools/graphprint: Now, make it a Killer-Feature!"
This reverts commit 1f2b8d7238eff4ab8a4d8d6177e250b8180d51f4.
Diffstat (limited to 'fftools/graph/graphprint.h')
-rw-r--r-- | fftools/graph/graphprint.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/fftools/graph/graphprint.h b/fftools/graph/graphprint.h index 43f769870b..9f043cc273 100644 --- a/fftools/graph/graphprint.h +++ b/fftools/graph/graphprint.h @@ -27,36 +27,4 @@ int print_filtergraphs(FilterGraph **graphs, int nb_graphs, InputFile **ifiles, int print_filtergraph(FilterGraph *fg, AVFilterGraph *graph); -/** - * Open an HTML file in the default browser (Windows, macOS, Linux/Unix). - * - * @param html_path Absolute or relative path to the HTML file. - * @return 0 on success, -1 on failure. - * - * NOTE: This uses system() calls for non-Windows, and ShellExecute on Windows. - * Exercise caution if 'html_path' is untrusted (possible command injection). - */ -int ff_open_html_in_browser(const char *html_path); - -/** - * Retrieve the system's temporary directory. - * - * @param buf Output buffer to store the temp directory path (including trailing slash) - * @param size Size of the output buffer in bytes - * @return 0 on success, -1 on failure (buffer too small or other errors) - * - * Note: On most platforms, the path will include a trailing slash (e.g. "C:\\Users\\...\\Temp\\" on Windows, "/tmp/" on Unix). - */ -int ff_get_temp_dir(char *buf, size_t size); - -/** - * Create a timestamped HTML filename, e.g.: - * ffmpeg_graph_2024-01-01_22-12-59_123.html - * - * @param buf Pointer to buffer where the result is stored - * @param size Size of the buffer in bytes - * @return 0 on success, -1 on error (e.g. buffer too small) - */ -int ff_make_timestamped_html_name(char *buf, size_t size); - #endif /* FFTOOLS_GRAPH_GRAPHPRINT_H */ |