Browse Source

test: don't define MODULE_xxx without vlc_plugin.h

It's not used and confusing.
pull/144/head
Steve Lhomme 3 years ago
parent
commit
63357faa16
  1. 4
      test/modules/stream_out/transcode.h
  2. 4
      test/modules/stream_out/transcode_scenarios.c
  3. 2
      test/src/input/decoder/input_decoder_scenarios.c
  4. 4
      test/src/video_output/video_output.h
  5. 4
      test/src/video_output/video_output_scenarios.c

4
test/modules/stream_out/transcode.h

@ -20,10 +20,6 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#define MODULE_NAME test_transcode_mock
#define MODULE_STRING "test_transcode_mock"
#undef VLC_DYNAMIC_PLUGIN
#include <vlc_fourcc.h>
#define TEST_FLAG_CONVERTER 0x01

4
test/modules/stream_out/transcode_scenarios.c

@ -24,10 +24,6 @@
# include "config.h"
#endif
#define MODULE_NAME test_transcode_mock
#define MODULE_STRING "test_transcode_mock"
#undef VLC_DYNAMIC_PLUGIN
#include <vlc_common.h>
#include <vlc_frame.h>

2
test/src/input/decoder/input_decoder_scenarios.c

@ -24,9 +24,7 @@
# include "config.h"
#endif
#define MODULE_NAME test_input_decoder_mock
#define MODULE_STRING "test_input_decoder_mock"
#undef VLC_DYNAMIC_PLUGIN
#include <vlc_common.h>
#include <vlc_messages.h>

4
test/src/video_output/video_output.h

@ -20,10 +20,6 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#define MODULE_NAME test_vout_mock
#define MODULE_STRING "test_vout_mock"
#undef VLC_DYNAMIC_PLUGIN
#include <vlc_fourcc.h>
#include <vlc_vout_display.h>

4
test/src/video_output/video_output_scenarios.c

@ -24,10 +24,6 @@
# include "config.h"
#endif
#define MODULE_NAME test_vout_mock
#define MODULE_STRING "test_vout_mock"
#undef VLC_DYNAMIC_PLUGIN
#include <vlc_common.h>
#include "video_output.h"

Loading…
Cancel
Save