Commit a5fdae96 authored by Frédéric Yhuel's avatar Frédéric Yhuel Committed by Jean-Baptiste Kempf

Smooth Streaming: fix a macro

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent c892cfc9
...@@ -162,8 +162,8 @@ struct stream_sys_t ...@@ -162,8 +162,8 @@ struct stream_sys_t
#define SMS_GET_SELECTED_ST( cat ) \ #define SMS_GET_SELECTED_ST( cat ) \
sms_get_stream_by_cat( p_sys->selected_st, cat ) sms_get_stream_by_cat( p_sys->selected_st, cat )
#define NO_MORE_CHUNKS !p_sys->b_live && \ #define NO_MORE_CHUNKS ( !p_sys->b_live && \
no_more_chunks( p_sys->download.ck_index, p_sys->selected_st ) no_more_chunks( p_sys->download.ck_index, p_sys->selected_st ) )
sms_queue_t *sms_queue_init( const int ); sms_queue_t *sms_queue_init( const int );
int sms_queue_put( sms_queue_t *, const uint64_t ); int sms_queue_put( sms_queue_t *, const uint64_t );
......
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