Commit ee5ad3cc authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* backport [19045] [19046]

  H264 packetization fixes
parent d39ac1c4
...@@ -57,6 +57,27 @@ vlc_module_end(); ...@@ -57,6 +57,27 @@ vlc_module_end();
static block_t *Packetize( decoder_t *, block_t ** ); static block_t *Packetize( decoder_t *, block_t ** );
static block_t *PacketizeAVC1( decoder_t *, block_t ** ); static block_t *PacketizeAVC1( decoder_t *, block_t ** );
typedef struct
{
int i_nal_type;
int i_nal_ref_idc;
int i_frame_type;
int i_pic_parameter_set_id;
int i_frame_num;
int i_field_pic_flag;
int i_bottom_field_flag;
int i_idr_pic_id;
int i_pic_order_cnt_lsb;
int i_delta_pic_order_cnt_bottom;
int i_delta_pic_order_cnt0;
int i_delta_pic_order_cnt1;
} slice_t;
struct decoder_sys_t struct decoder_sys_t
{ {
block_bytestream_t bytestream; block_bytestream_t bytestream;
...@@ -80,13 +101,15 @@ struct decoder_sys_t ...@@ -80,13 +101,15 @@ struct decoder_sys_t
/* Useful values of the Sequence Parameter Set */ /* Useful values of the Sequence Parameter Set */
int i_log2_max_frame_num; int i_log2_max_frame_num;
int b_frame_mbs_only; int b_frame_mbs_only;
int i_pic_order_cnt_type;
int i_delta_pic_order_always_zero_flag;
int i_log2_max_pic_order_cnt_lsb;
/* Value from Picture Parameter Set */
int i_pic_order_present_flag;
/* Useful values of the Slice Header */ /* Useful values of the Slice Header */
int i_nal_type; slice_t slice;
int i_nal_ref_idc;
int i_idr_pic_id;
int i_frame_num;
int i_frame_type;
}; };
enum enum
...@@ -164,11 +187,16 @@ static int Open( vlc_object_t *p_this ) ...@@ -164,11 +187,16 @@ static int Open( vlc_object_t *p_this )
p_sys->p_pps = 0; p_sys->p_pps = 0;
p_sys->b_header= VLC_FALSE; p_sys->b_header= VLC_FALSE;
p_sys->i_nal_type = -1; p_sys->slice.i_nal_type = -1;
p_sys->i_nal_ref_idc = -1; p_sys->slice.i_nal_ref_idc = -1;
p_sys->i_idr_pic_id = -1; p_sys->slice.i_idr_pic_id = -1;
p_sys->i_frame_num = -1; p_sys->slice.i_frame_num = -1;
p_sys->i_frame_type = 0; p_sys->slice.i_frame_type = 0;
p_sys->slice.i_pic_parameter_set_id = -1;
p_sys->slice.i_field_pic_flag = 0;
p_sys->slice.i_bottom_field_flag = -1;
p_sys->slice.i_pic_order_cnt_lsb = -1;
p_sys->slice.i_delta_pic_order_cnt_bottom = -1;
/* Setup properties */ /* Setup properties */
es_format_Copy( &p_dec->fmt_out, &p_dec->fmt_in ); es_format_Copy( &p_dec->fmt_out, &p_dec->fmt_in );
...@@ -221,8 +249,8 @@ static int Open( vlc_object_t *p_this ) ...@@ -221,8 +249,8 @@ static int Open( vlc_object_t *p_this )
/* Set the new extradata */ /* Set the new extradata */
p_dec->fmt_out.i_extra = p_sys->p_pps->i_buffer + p_sys->p_sps->i_buffer; p_dec->fmt_out.i_extra = p_sys->p_pps->i_buffer + p_sys->p_sps->i_buffer;
p_dec->fmt_out.p_extra = (uint8_t*)malloc( p_dec->fmt_out.i_extra ); p_dec->fmt_out.p_extra = (uint8_t*)malloc( p_dec->fmt_out.i_extra );
memcpy( p_dec->fmt_out.p_extra, p_sys->p_sps->p_buffer, p_sys->p_sps->i_buffer); memcpy( (uint8_t*)p_dec->fmt_out.p_extra, p_sys->p_sps->p_buffer, p_sys->p_sps->i_buffer);
memcpy( p_dec->fmt_out.p_extra+p_sys->p_sps->i_buffer, p_sys->p_pps->p_buffer, p_sys->p_pps->i_buffer); memcpy( (uint8_t*)p_dec->fmt_out.p_extra+p_sys->p_sps->i_buffer, p_sys->p_pps->p_buffer, p_sys->p_pps->i_buffer);
p_sys->b_header = VLC_TRUE; p_sys->b_header = VLC_TRUE;
/* Set callback */ /* Set callback */
...@@ -334,7 +362,8 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block ) ...@@ -334,7 +362,8 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
p_pic->i_buffer-1 ); p_pic->i_buffer-1 );
/* Remove trailing 0 bytes */ /* Remove trailing 0 bytes */
while( p_pic->i_buffer && (!p_pic->p_buffer[p_pic->i_buffer-1] ) ) p_pic->i_buffer--; while( p_pic->i_buffer && (!p_pic->p_buffer[p_pic->i_buffer-1] ) )
p_pic->i_buffer--;
p_sys->i_offset = 0; p_sys->i_offset = 0;
/* Parse the NAL */ /* Parse the NAL */
...@@ -482,43 +511,42 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag ) ...@@ -482,43 +511,42 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
#define OUTPUT \ #define OUTPUT \
do { \ do { \
if( !p_sys->b_header && p_sys->i_frame_type != BLOCK_FLAG_TYPE_I) \ if( !p_sys->b_header && p_sys->slice.i_frame_type != BLOCK_FLAG_TYPE_I) \
break; \ break; \
\ \
p_pic = block_ChainGather( p_sys->p_frame ); \ if( p_sys->slice.i_frame_type == BLOCK_FLAG_TYPE_I && p_sys->p_sps && p_sys->p_pps && !p_sys->b_header ) \
p_pic->i_length = 0; /* FIXME */ \
p_pic->i_flags |= p_sys->i_frame_type; \
\
p_sys->i_frame_type = 0; \
p_sys->p_frame = NULL; \
p_sys->b_slice = VLC_FALSE; \
\
if( ( p_pic->i_flags & BLOCK_FLAG_TYPE_I ) && \
p_sys->p_sps && p_sys->p_pps ) \
{ \ { \
block_t *p_sps = block_Duplicate( p_sys->p_sps ); \ block_t *p_sps = block_Duplicate( p_sys->p_sps ); \
block_t *p_pps = block_Duplicate( p_sys->p_pps ); \ block_t *p_pps = block_Duplicate( p_sys->p_pps ); \
p_sps->i_dts = p_pps->i_dts = p_pic->i_dts; \ p_sps->i_dts = p_sys->p_frame->i_dts; \
p_sps->i_pts = p_pps->i_pts = p_pic->i_pts; \ p_sps->i_pts = p_sys->p_frame->i_pts; \
block_ChainAppend( &p_sps, p_pps ); \ block_ChainAppend( &p_sps, p_pps ); \
block_ChainAppend( &p_sps, p_pic ); \ block_ChainAppend( &p_sps, p_sys->p_frame ); \
p_pic = p_sps; \
p_sys->b_header = VLC_TRUE; \ p_sys->b_header = VLC_TRUE; \
p_pic = block_ChainGather( p_sps ); \
} else { \
p_pic = block_ChainGather( p_sys->p_frame ); \
} \ } \
p_pic->i_length = 0; /* FIXME */ \
p_pic->i_flags |= p_sys->slice.i_frame_type; \
\
p_sys->slice.i_frame_type = 0; \
p_sys->p_frame = NULL; \
p_sys->b_slice = VLC_FALSE; \
} while(0) } while(0)
if( p_sys->b_slice && ( !p_sys->b_sps || !p_sys->b_pps ) )
if( p_sys->b_slice && !p_sys->b_sps )
{ {
block_ChainRelease( p_sys->p_frame ); block_ChainRelease( p_sys->p_frame );
msg_Warn( p_dec, "waiting for SPS" ); msg_Warn( p_dec, "waiting for SPS/PPS" );
/* Reset context */ /* Reset context */
p_sys->slice.i_frame_type = 0;
p_sys->p_frame = NULL; p_sys->p_frame = NULL;
p_sys->b_slice = VLC_FALSE; p_sys->b_slice = VLC_FALSE;
} }
if( !p_sys->b_sps && if( ( !p_sys->b_sps || !p_sys->b_pps ) &&
i_nal_type >= NAL_SLICE && i_nal_type <= NAL_SLICE_IDR ) i_nal_type >= NAL_SLICE && i_nal_type <= NAL_SLICE_IDR )
{ {
p_sys->b_slice = VLC_TRUE; p_sys->b_slice = VLC_TRUE;
...@@ -527,8 +555,9 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag ) ...@@ -527,8 +555,9 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
else if( i_nal_type >= NAL_SLICE && i_nal_type <= NAL_SLICE_IDR ) else if( i_nal_type >= NAL_SLICE && i_nal_type <= NAL_SLICE_IDR )
{ {
uint8_t *dec; uint8_t *dec;
int i_dec, i_first_mb, i_slice_type, i_frame_num; int i_dec, i_first_mb, i_slice_type;
vlc_bool_t b_pic = VLC_FALSE; slice_t slice;
vlc_bool_t b_pic;
bs_t s; bs_t s;
/* do not convert the whole frame */ /* do not convert the whole frame */
...@@ -543,59 +572,90 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag ) ...@@ -543,59 +572,90 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
switch( (i_slice_type = bs_read_ue( &s )) ) switch( (i_slice_type = bs_read_ue( &s )) )
{ {
case 0: case 5: case 0: case 5:
p_sys->i_frame_type = BLOCK_FLAG_TYPE_P; slice.i_frame_type = BLOCK_FLAG_TYPE_P;
break; break;
case 1: case 6: case 1: case 6:
p_sys->i_frame_type = BLOCK_FLAG_TYPE_B; slice.i_frame_type = BLOCK_FLAG_TYPE_B;
break; break;
case 2: case 7: case 2: case 7:
p_sys->i_frame_type = BLOCK_FLAG_TYPE_I; slice.i_frame_type = BLOCK_FLAG_TYPE_I;
break; break;
case 3: case 8: /* SP */ case 3: case 8: /* SP */
p_sys->i_frame_type = BLOCK_FLAG_TYPE_P; slice.i_frame_type = BLOCK_FLAG_TYPE_P;
break; break;
case 4: case 9: case 4: case 9:
p_sys->i_frame_type = BLOCK_FLAG_TYPE_I; slice.i_frame_type = BLOCK_FLAG_TYPE_I;
break;
default:
slice.i_frame_type = 0;
break; break;
} }
/* pic_parameter_set_id */ /* */
bs_read_ue( &s ); slice.i_nal_type = i_nal_type;
/* frame_num */ slice.i_nal_ref_idc = i_nal_ref_idc;
i_frame_num = bs_read( &s, p_sys->i_log2_max_frame_num + 4 );
/* Detection of the first VCL NAL unit of a primary coded picture slice.i_pic_parameter_set_id = bs_read_ue( &s );
* (cf. 7.4.1.2.4) */ slice.i_frame_num = bs_read( &s, p_sys->i_log2_max_frame_num + 4 );
if( i_frame_num != p_sys->i_frame_num ||
( (i_nal_ref_idc != p_sys->i_nal_ref_idc) &&
(!i_nal_ref_idc || !p_sys->i_nal_ref_idc) ) )
{
b_pic = VLC_TRUE;
}
p_sys->i_frame_num = i_frame_num;
p_sys->i_nal_ref_idc = i_nal_ref_idc;
slice.i_field_pic_flag = 0;
slice.i_bottom_field_flag = -1;
if( !p_sys->b_frame_mbs_only ) if( !p_sys->b_frame_mbs_only )
{ {
/* field_pic_flag */ /* field_pic_flag */
if( bs_read( &s, 1 ) ) slice.i_field_pic_flag = bs_read( &s, 1 );
{ if( slice.i_field_pic_flag )
/* bottom_field_flag */ slice.i_bottom_field_flag = bs_read( &s, 1 );
bs_read( &s, 1 );
}
} }
if( i_nal_type == NAL_SLICE_IDR ) slice.i_idr_pic_id = p_sys->slice.i_idr_pic_id;
if( slice.i_nal_type == NAL_SLICE_IDR )
slice.i_idr_pic_id = bs_read_ue( &s );
slice.i_pic_order_cnt_lsb = -1;
slice.i_delta_pic_order_cnt_bottom = -1;
slice.i_delta_pic_order_cnt0 = 0;
slice.i_delta_pic_order_cnt1 = 0;
if( p_sys->i_pic_order_cnt_type == 0 )
{
slice.i_pic_order_cnt_lsb = bs_read( &s, p_sys->i_log2_max_pic_order_cnt_lsb + 4 );
if( p_sys->i_pic_order_present_flag && !slice.i_field_pic_flag )
slice.i_delta_pic_order_cnt_bottom = bs_read_se( &s );
}
else if( p_sys->i_pic_order_cnt_type == 1 && !p_sys->i_delta_pic_order_always_zero_flag )
{ {
/* id_pic_id */ slice.i_delta_pic_order_cnt0 = bs_read_se( &s );
int i_idr_pic_id = bs_read_ue( &s ); if( p_sys->i_pic_order_present_flag && !slice.i_field_pic_flag )
if( p_sys->i_nal_type != i_nal_type ) b_pic = VLC_TRUE; slice.i_delta_pic_order_cnt1 = bs_read_se( &s );
if( p_sys->i_idr_pic_id != i_idr_pic_id ) b_pic = VLC_TRUE;
p_sys->i_idr_pic_id = i_idr_pic_id;
} }
p_sys->i_nal_type = i_nal_type;
if( b_pic && p_sys->b_slice ) OUTPUT; /* Detection of the first VCL NAL unit of a primary coded picture
* (cf. 7.4.1.2.4) */
b_pic = VLC_FALSE;
if( slice.i_frame_num != p_sys->slice.i_frame_num ||
slice.i_pic_parameter_set_id != p_sys->slice.i_pic_parameter_set_id ||
slice.i_field_pic_flag != p_sys->slice.i_field_pic_flag ||
slice.i_nal_ref_idc != p_sys->slice.i_nal_ref_idc )
b_pic = VLC_TRUE;
if( slice.i_bottom_field_flag != -1 && p_sys->slice.i_bottom_field_flag != -1 && slice.i_bottom_field_flag != p_sys->slice.i_bottom_field_flag )
b_pic = VLC_TRUE;
if( p_sys->i_pic_order_cnt_type == 0 &&
( slice.i_pic_order_cnt_lsb != p_sys->slice.i_pic_order_cnt_lsb ||
slice.i_delta_pic_order_cnt_bottom != p_sys->slice.i_delta_pic_order_cnt_bottom ) )
b_pic = VLC_TRUE;
else if( p_sys->i_pic_order_cnt_type == 1 &&
( slice.i_delta_pic_order_cnt0 != p_sys->slice.i_delta_pic_order_cnt0 ||
slice.i_delta_pic_order_cnt1 != p_sys->slice.i_delta_pic_order_cnt1 ) )
b_pic = VLC_TRUE;
if( ( slice.i_nal_type == NAL_SLICE_IDR || p_sys->slice.i_nal_type == NAL_SLICE_IDR ) &&
( slice.i_nal_type != p_sys->slice.i_nal_type || slice.i_idr_pic_id != p_sys->slice.i_idr_pic_id ) )
b_pic = VLC_TRUE;
/* */
p_sys->slice = slice;
if( b_pic && p_sys->b_slice )
OUTPUT;
p_sys->b_slice = VLC_TRUE; p_sys->b_slice = VLC_TRUE;
...@@ -622,18 +682,22 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag ) ...@@ -622,18 +682,22 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
bs_read_ue( &s ); bs_read_ue( &s );
/* Skip i_log2_max_frame_num */ /* Skip i_log2_max_frame_num */
p_sys->i_log2_max_frame_num = bs_read_ue( &s ); p_sys->i_log2_max_frame_num = bs_read_ue( &s );
if( p_sys->i_log2_max_frame_num > 12)
p_sys->i_log2_max_frame_num = 12;
/* Read poc_type */ /* Read poc_type */
i_tmp = bs_read_ue( &s ); p_sys->i_pic_order_cnt_type = bs_read_ue( &s );
if( i_tmp == 0 ) if( p_sys->i_pic_order_cnt_type == 0 )
{ {
/* skip i_log2_max_poc_lsb */ /* skip i_log2_max_poc_lsb */
bs_read_ue( &s ); p_sys->i_log2_max_pic_order_cnt_lsb = bs_read_ue( &s );
if( p_sys->i_log2_max_pic_order_cnt_lsb > 12 )
p_sys->i_log2_max_pic_order_cnt_lsb = 12;
} }
else if( i_tmp == 1 ) else if( p_sys->i_pic_order_cnt_type == 1 )
{ {
int i_cycle; int i_cycle;
/* skip b_delta_pic_order_always_zero */ /* skip b_delta_pic_order_always_zero */
bs_skip( &s, 1 ); p_sys->i_delta_pic_order_always_zero_flag = bs_read( &s, 1 );
/* skip i_offset_for_non_ref_pic */ /* skip i_offset_for_non_ref_pic */
bs_read_se( &s ); bs_read_se( &s );
/* skip i_offset_for_top_to_bottom_field */ /* skip i_offset_for_top_to_bottom_field */
...@@ -730,7 +794,12 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag ) ...@@ -730,7 +794,12 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
else if( i_nal_type == NAL_PPS ) else if( i_nal_type == NAL_PPS )
{ {
bs_t s; bs_t s;
bs_init( &s, &p_frag->p_buffer[5], p_frag->i_buffer - 5 ); bs_init( &s, &p_frag->p_buffer[5], p_frag->i_buffer - 5 );
bs_read_ue( &s ); // pps id
bs_read_ue( &s ); // sps id
bs_skip( &s, 1 ); // entropy coding mode flag
p_sys->i_pic_order_present_flag = bs_read( &s, 1 );
if( !p_sys->b_pps ) msg_Dbg( p_dec, "found NAL_PPS" ); if( !p_sys->b_pps ) msg_Dbg( p_dec, "found NAL_PPS" );
p_sys->b_pps = VLC_TRUE; p_sys->b_pps = VLC_TRUE;
......
...@@ -387,9 +387,8 @@ static int Open( vlc_object_t *p_this ) ...@@ -387,9 +387,8 @@ static int Open( vlc_object_t *p_this )
if( val.i_int < 0 ) if( val.i_int < 0 )
{ {
msg_Err( p_stream, "illegal TTL %d", val.i_int ); msg_Warn( p_stream, "illegal TTL %d, using 1", val.i_int );
free( p_sys ); val.i_int = -1;
return VLC_EGENERIC;
} }
p_sys->i_ttl = val.i_int; p_sys->i_ttl = val.i_int;
...@@ -2470,104 +2469,119 @@ static int rtp_packetize_h263( sout_stream_t *p_stream, sout_stream_id_t *id, ...@@ -2470,104 +2469,119 @@ static int rtp_packetize_h263( sout_stream_t *p_stream, sout_stream_id_t *id,
} }
/* rfc3984 */ /* rfc3984 */
static int rtp_packetize_h264( sout_stream_t *p_stream, sout_stream_id_t *id, static int rtp_packetize_h264_nal( sout_stream_t *p_stream, sout_stream_id_t *id,
block_t *in ) const uint8_t *p_data, int i_data, int64_t i_pts, int64_t i_dts, vlc_bool_t b_last, int64_t i_length )
{ {
int i_max = id->i_mtu - 12; /* payload max in one packet */ const int i_max = id->i_mtu - 12; /* payload max in one packet */
int i_count = ( in->i_buffer + i_max - 1 ) / i_max; int i_nal_hdr;
uint8_t *p_data = in->p_buffer;
int i_data = in->i_buffer;
block_t *out;
int i_nal_type; int i_nal_type;
int i_payload;
while( i_data > 5 &&
( p_data[0] != 0x00 || p_data[1] != 0x00 || p_data[2] != 0x01 || /* startcode */
(p_data[3]&0x1f) < 1 || (p_data[3]&0x1f) > 23 ) ) /* naltype should be between 1 and 23 */
{
p_data++;
i_data--;
}
if( i_data < 5 ) if( i_data < 5 )
return VLC_SUCCESS; return VLC_SUCCESS;
p_data+=3; i_nal_hdr = p_data[3];
i_data-=3; i_nal_type = i_nal_hdr&0x1f;
i_nal_type = p_data[0]&0x1f; if( i_nal_type == 7 || i_nal_type == 8 )
if( i_data <= i_max ) /* The whole pack will fit in one rtp payload */
{ {
/* single NAL */ /* XXX Why do you want to remove them ? It will break streaming with
i_payload = __MIN( i_max, i_data ); * SPS/PPS change (broadcast) ? */
out = block_New( p_stream, 12 + i_payload ); return VLC_SUCCESS;
}
/* rtp common header */ /* Skip start code */
rtp_packetize_common( id, out, 1, p_data += 3;
in->i_pts > 0 ? in->i_pts : in->i_dts ); i_data -= 3;
memcpy( &out->p_buffer[12], p_data, i_payload ); /* */
if( i_data <= i_max )
{
/* Single NAL unit packet */
block_t *out = block_New( p_stream, 12 + i_data );
out->i_dts = i_dts;
out->i_length = i_length;
out->i_buffer = 12 + i_payload; /* */
out->i_dts = in->i_dts; rtp_packetize_common( id, out, b_last, i_pts );
out->i_length = in->i_length; out->i_buffer = 12 + i_data;
rtp_packetize_send( id, out ); memcpy( &out->p_buffer[12], p_data, i_data );
/*msg_Dbg( p_stream, "nal-out plain %d %02x", i_payload, out->p_buffer[16] );*/ rtp_packetize_send( id, out );
} }
else else
{ {
/* FU-A */ /* FU-A Fragmentation Unit without interleaving */
uint8_t nalh; /* The nalheader byte */ const int i_count = ( i_data-1 + i_max-2 - 1 ) / (i_max-2);
int i=0, start=1, end=0, first=0; int i;
nalh = *p_data;
p_data++; p_data++;
i_data--; i_data--;
i_max = id->i_mtu - 14; for( i = 0; i < i_count; i++ )
i_count = ( i_data + i_max - 1 ) / i_max;
/*msg_Dbg( p_stream, "nal-out fragmented %02x %d", nalh, i_rest);*/
while( end == 0 )
{ {
i_payload = __MIN( i_max, i_data ); const int i_payload = __MIN( i_data, i_max-2 );
out = block_New( p_stream, 14 + i_payload ); block_t *out = block_New( p_stream, 12 + 2 + i_payload );
out->i_dts = i_dts + i * i_length / i_count;
out->i_length = i_length / i_count;
if( i_data == i_payload ) fprintf( stderr, "FU-A: payload=%d hdr=0x%x\n", i_payload, i_nal_hdr);
end = 1;
/* rtp common header */ /* */
rtp_packetize_common( id, out, (end)?1:0, rtp_packetize_common( id, out, (b_last && i_payload == i_data), i_pts );
in->i_pts > 0 ? in->i_pts : in->i_dts ); out->i_buffer = 14 + i_payload;
/* FU indicator */ /* FU indicator */
out->p_buffer[12] = (nalh&0x60)|28; out->p_buffer[12] = 0x00 | (i_nal_hdr & 0x60) | 28;
/* FU header */ /* FU header */
out->p_buffer[13] = (start<<7)|(end<<6)|(nalh&0x1f); out->p_buffer[13] = ( i == 0 ? 0x80 : 0x00 ) | ( (i == i_count-1) ? 0x40 : 0x00 ) | i_nal_type;
memcpy( &out->p_buffer[14], p_data, i_payload );
memcpy( &out->p_buffer[14], p_data+first, i_payload ); rtp_packetize_send( id, out );
out->i_buffer = 14 + i_payload; i_data -= i_payload;
p_data += i_payload;
}
}
return VLC_SUCCESS;
}
// not sure what of these should be used and what it does :) static int rtp_packetize_h264( sout_stream_t *p_stream, sout_stream_id_t *id,
out->i_pts = in->i_pts; block_t *in )
out->i_dts = in->i_dts; {
//out->i_dts = in->i_dts + i * in->i_length / i_count; const uint8_t *p_buffer = in->p_buffer;
//out->i_length = in->i_length / i_count; int i_buffer = in->i_buffer;
rtp_packetize_send( id, out ); while( i_buffer > 4 && ( p_buffer[0] != 0 || p_buffer[1] != 0 || p_buffer[2] != 1 ) )
{
i_buffer--;
p_buffer++;
}
/*msg_Dbg( p_stream, "nal-out fragmented: frag %d %d %02x %02x %d", start,end, /* Split nal units */
out->p_buffer[12], out->p_buffer[13], i_payload );*/ while( i_buffer > 4 )
{
int i_offset;
int i_size = i_buffer;
int i_skip = i_buffer;
i_data -= i_payload; /* search nal end */
first += i_payload; for( i_offset = 4; i_offset+2 < i_buffer ; i_offset++)
i++; {
start=0; if( p_buffer[i_offset] == 0 && p_buffer[i_offset+1] == 0 && p_buffer[i_offset+2] == 1 )
{
/* we found another startcode */
i_size = i_offset - ( p_buffer[i_offset-1] == 0 ? 1 : 0);
i_skip = i_offset;
break;
}
} }
/* TODO add STAP-A to remove a lot of overhead with small slice/sei/... */
rtp_packetize_h264_nal( p_stream, id, p_buffer, i_size,
(in->i_pts > 0 ? in->i_pts : in->i_dts), in->i_dts,
(i_size >= i_buffer), in->i_length * i_size / in->i_buffer );
i_buffer -= i_skip;
p_buffer += i_skip;
} }
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
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