Browse Source

sapi: remove unneeded forward declaration

Fixes this odd warning:
```
vlc/modules/text_renderer/sapi.cpp:64:12: warning: unused function 'RenderTextMTA' [-Wunused-function]
   64 | static int RenderTextMTA(filter_t *, subpicture_region_t *);
      |            ^~~~~~~~~~~~~
```
pull/176/head
Steve Lhomme 2 years ago
parent
commit
b606a740e8
  1. 2
      modules/text_renderer/sapi.cpp

2
modules/text_renderer/sapi.cpp

@ -61,8 +61,6 @@ static subpicture_region_t *RenderText(filter_t *,
const vlc_fourcc_t *);
}
static int RenderTextMTA(filter_t *, subpicture_region_t *);
vlc_module_begin ()
set_description(N_("Speech synthesis for Windows"))

Loading…
Cancel
Save