]> git.sesse.net Git - vlc/blobdiff - src/misc/modules_plugin.h
* Added a third argument to aout_OutputNextBuffer. In case the buffer
[vlc] / src / misc / modules_plugin.h
index 6d7368d47c1d46fc56c16967b7f6b4d45c1d288a..d00c6cac4ae311018f39be630e6e51f8c23371ae 100644 (file)
@@ -179,6 +179,7 @@ static const char * module_error( char *psz_buffer )
  * STORE_SYMBOLS: store known symbols into p_symbols for plugin access.
  *****************************************************************************/
 #define STORE_SYMBOLS( p_symbols ) \
+    (p_symbols)->aout_OutputNextBuffer_inner = aout_OutputNextBuffer; \
     (p_symbols)->__aout_NewInstance_inner = __aout_NewInstance; \
     (p_symbols)->aout_DeleteInstance_inner = aout_DeleteInstance; \
     (p_symbols)->aout_BufferNew_inner = aout_BufferNew; \
@@ -187,7 +188,6 @@ static const char * module_error( char *psz_buffer )
     (p_symbols)->aout_FormatToByterate_inner = aout_FormatToByterate; \
     (p_symbols)->__aout_InputNew_inner = __aout_InputNew; \
     (p_symbols)->aout_InputDelete_inner = aout_InputDelete; \
-    (p_symbols)->aout_OutputNextBuffer_inner = aout_OutputNextBuffer; \
     (p_symbols)->__config_GetInt_inner = __config_GetInt; \
     (p_symbols)->__config_PutInt_inner = __config_PutInt; \
     (p_symbols)->__config_GetFloat_inner = __config_GetFloat; \