Commit 2626e234 authored by Antoine Cellerier's avatar Antoine Cellerier

* warning fixes

parent 6e8cb95c
...@@ -648,7 +648,7 @@ static block_t *OggCreateHeader( sout_mux_t *p_mux, mtime_t i_dts ) ...@@ -648,7 +648,7 @@ static block_t *OggCreateHeader( sout_mux_t *p_mux, mtime_t i_dts )
else if( p_stream->i_fourcc == VLC_FOURCC( 'f', 'l', 'a', 'c' ) ) else if( p_stream->i_fourcc == VLC_FOURCC( 'f', 'l', 'a', 'c' ) )
{ {
/* flac stream marker (yeah, only that in the 1st packet) */ /* flac stream marker (yeah, only that in the 1st packet) */
op.packet = "fLaC"; op.packet = (unsigned char *)"fLaC";
op.bytes = 4; op.bytes = 4;
op.b_o_s = 1; op.b_o_s = 1;
op.e_o_s = 0; op.e_o_s = 0;
...@@ -729,7 +729,8 @@ static block_t *OggCreateHeader( sout_mux_t *p_mux, mtime_t i_dts ) ...@@ -729,7 +729,8 @@ static block_t *OggCreateHeader( sout_mux_t *p_mux, mtime_t i_dts )
/* comment */ /* comment */
com[0] = PACKET_TYPE_COMMENT; com[0] = PACKET_TYPE_COMMENT;
i_com = snprintf( &com[1], 127, PACKAGE_VERSION" stream output" ) i_com = snprintf( (char *)(com+1), 127,
PACKAGE_VERSION" stream output" )
+ 1; + 1;
op.packet = com; op.packet = com;
op.bytes = i_com; op.bytes = i_com;
......
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