Commit 3f615499 authored by Laurent Aimar's avatar Laurent Aimar

Added missing const qualifier to vod_MediaControl.

Improved TAB_* protection and added TAB_INIT/CLEAN.
parent bca93013
......@@ -73,21 +73,31 @@
} \
while( 0 )
#define TAB_INIT( count, tab ) \
do { \
(count) = 0; \
(tab) = NULL; \
} while(0)
#define TAB_CLEAN( count, tab ) \
do { \
if( tab ) free( tab ); \
(count)= 0; \
(tab)= NULL; \
} while(0)
#define TAB_APPEND( count, tab, p ) \
do { \
if( (count) > 0 ) \
{ \
(tab) = realloc( tab, sizeof( void ** ) * ( (count) + 1 ) ); \
} \
else \
{ \
(tab) = malloc( sizeof( void ** ) ); \
} \
(tab)[count] = (p); \
(count)++
(count)++; \
} while(0)
#define TAB_FIND( count, tab, p, index ) \
{ \
do { \
int _i_; \
(index) = -1; \
for( _i_ = 0; _i_ < (count); _i_++ ) \
......@@ -98,10 +108,10 @@
break; \
} \
} \
}
} while(0)
#define TAB_REMOVE( count, tab, p ) \
{ \
do { \
int _i_index_; \
TAB_FIND( count, tab, p, _i_index_ ); \
if( _i_index_ >= 0 ) \
......@@ -119,7 +129,7 @@
(tab) = NULL; \
} \
} \
}
} while(0)
/**
* Binary search in a sorted array. The key must be comparable by < and >
......@@ -130,7 +140,8 @@
* \param key value of the key
* \param answer index of answer within the array. -1 if not found
*/
#define BSEARCH( entries, count, elem, zetype, key, answer ) { \
#define BSEARCH( entries, count, elem, zetype, key, answer ) \
do { \
int low = 0, high = count - 1; \
answer = -1; \
while( low <= high ) {\
......@@ -145,7 +156,7 @@
answer = mid; break; \
}\
} \
}
} while(0)
/************************************************************************
* Dictionaries
......
......@@ -47,7 +47,7 @@ struct vod_t
};
static inline int vod_MediaControl( vod_t *p_vod, vod_media_t *p_media,
char *psz_id, int i_query, ... )
const char *psz_id, int i_query, ... )
{
va_list args;
int i_result;
......@@ -63,12 +63,12 @@ static inline int vod_MediaControl( vod_t *p_vod, vod_media_t *p_media,
enum vod_query_e
{
VOD_MEDIA_PLAY, /* arg1= double * res= */
VOD_MEDIA_PAUSE, /* arg1= double * res= */
VOD_MEDIA_STOP, /* arg1= double res=can fail */
VOD_MEDIA_SEEK, /* arg1= double * res= */
VOD_MEDIA_REWIND, /* arg1= double * res= */
VOD_MEDIA_FORWARD, /* arg1= double * res= */
VOD_MEDIA_PLAY, /* arg1= char * res= */
VOD_MEDIA_PAUSE, /* arg1= res= */
VOD_MEDIA_STOP, /* arg1= res=can fail */
VOD_MEDIA_SEEK, /* arg1= double res= */
VOD_MEDIA_REWIND, /* arg1= double res= */
VOD_MEDIA_FORWARD, /* arg1= double res= */
};
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment