Commit 50fd08c3 authored by Gildas Bazin's avatar Gildas Bazin

* modules/packetizer/h264.c: small fix to annexe-b packetizer.

parent 4f9e5a30
...@@ -72,6 +72,8 @@ struct decoder_sys_t ...@@ -72,6 +72,8 @@ struct decoder_sys_t
/* avcC data */ /* avcC data */
int i_avcC_length_size; int i_avcC_length_size;
block_t *p_sps;
block_t *p_pps;
/* 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;
...@@ -152,6 +154,8 @@ static int Open( vlc_object_t *p_this ) ...@@ -152,6 +154,8 @@ static int Open( vlc_object_t *p_this )
p_sys->p_frame = NULL; p_sys->p_frame = NULL;
p_sys->b_sps = VLC_FALSE; p_sys->b_sps = VLC_FALSE;
p_sys->b_pps = VLC_FALSE; p_sys->b_pps = VLC_FALSE;
p_sys->p_sps = 0;
p_sys->p_pps = 0;
p_sys->i_nal_type = -1; p_sys->i_nal_type = -1;
p_sys->i_nal_ref_idc = -1; p_sys->i_nal_ref_idc = -1;
...@@ -182,6 +186,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -182,6 +186,7 @@ static int Open( vlc_object_t *p_this )
int i_length = GetWBE( p ); int i_length = GetWBE( p );
block_t *p_sps = nal_get_annexeb( p_dec, p + 2, i_length ); block_t *p_sps = nal_get_annexeb( p_dec, p + 2, i_length );
p_sys->p_sps = block_Duplicate( p_sps );
p_sps->i_pts = p_sps->i_dts = mdate(); p_sps->i_pts = p_sps->i_dts = mdate();
ParseNALBlock( p_dec, p_sps ); ParseNALBlock( p_dec, p_sps );
p += 2 + i_length; p += 2 + i_length;
...@@ -193,6 +198,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -193,6 +198,7 @@ static int Open( vlc_object_t *p_this )
int i_length = GetWBE( p ); int i_length = GetWBE( p );
block_t *p_pps = nal_get_annexeb( p_dec, p + 2, i_length ); block_t *p_pps = nal_get_annexeb( p_dec, p + 2, i_length );
p_sys->p_pps = block_Duplicate( p_pps );
p_pps->i_pts = p_pps->i_dts = mdate(); p_pps->i_pts = p_pps->i_dts = mdate();
ParseNALBlock( p_dec, p_pps ); ParseNALBlock( p_dec, p_pps );
p += 2 + i_length; p += 2 + i_length;
...@@ -236,6 +242,8 @@ static void Close( vlc_object_t *p_this ) ...@@ -236,6 +242,8 @@ static void Close( vlc_object_t *p_this )
decoder_t *p_dec = (decoder_t*)p_this; decoder_t *p_dec = (decoder_t*)p_this;
decoder_sys_t *p_sys = p_dec->p_sys; decoder_sys_t *p_sys = p_dec->p_sys;
if( p_sys->p_sps ) block_Release( p_sys->p_sps );
if( p_sys->p_pps ) block_Release( p_sys->p_pps );
block_BytestreamRelease( &p_sys->bytestream ); block_BytestreamRelease( &p_sys->bytestream );
free( p_sys ); free( p_sys );
} }
...@@ -281,16 +289,11 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block ) ...@@ -281,16 +289,11 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
case STATE_NEXT_SYNC: case STATE_NEXT_SYNC:
/* Find the next startcode */ /* Find the next startcode */
if( block_FindStartcodeFromOffset( &p_sys->bytestream, if( block_FindStartcodeFromOffset( &p_sys->bytestream,
&p_sys->i_offset, p_sys->startcode, 3 ) != VLC_SUCCESS) &p_sys->i_offset, p_sys->startcode+1, 3 ) != VLC_SUCCESS)
{
if( block_FindStartcodeFromOffset( &p_sys->bytestream,
&p_sys->i_offset, p_sys->startcode+1, 3 ) !=
VLC_SUCCESS )
{ {
/* Need more data */ /* Need more data */
return NULL; return NULL;
} }
}
/* Get the new fragment and set the pts/dts */ /* Get the new fragment and set the pts/dts */
p_pic = block_New( p_dec, p_sys->i_offset ); p_pic = block_New( p_dec, p_sys->i_offset );
...@@ -300,6 +303,7 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block ) ...@@ -300,6 +303,7 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
block_GetBytes( &p_sys->bytestream, p_pic->p_buffer, block_GetBytes( &p_sys->bytestream, p_pic->p_buffer,
p_pic->i_buffer ); p_pic->i_buffer );
if( !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 */
...@@ -338,6 +342,22 @@ static block_t *PacketizeAVC1( decoder_t *p_dec, block_t **pp_block ) ...@@ -338,6 +342,22 @@ static block_t *PacketizeAVC1( decoder_t *p_dec, block_t **pp_block )
p_block = *pp_block; p_block = *pp_block;
*pp_block = NULL; *pp_block = NULL;
#if 0
if( //(p_block->i_flags & BLOCK_FLAG_TYPE_I) &&
p_sys->p_sps && p_sys->p_pps )
{
block_t *p_pic;
block_t *p_sps = block_Duplicate( p_sys->p_sps );
block_t *p_pps = block_Duplicate( p_sys->p_pps );
p_sps->i_dts = p_pps->i_dts = p_block->i_dts;
p_sps->i_pts = p_pps->i_pts = p_block->i_pts;
p_pic = ParseNALBlock( p_dec, p_sps );
if( p_pic ) block_ChainAppend( &p_ret, p_pic );
p_pic = ParseNALBlock( p_dec, p_pps );
if( p_pic ) block_ChainAppend( &p_ret, p_pic );
}
#endif
for( p = p_block->p_buffer; p < &p_block->p_buffer[p_block->i_buffer]; ) for( p = p_block->p_buffer; p < &p_block->p_buffer[p_block->i_buffer]; )
{ {
block_t *p_pic; block_t *p_pic;
...@@ -534,8 +554,7 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag ) ...@@ -534,8 +554,7 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
} }
p_sys->i_nal_type = i_nal_type; p_sys->i_nal_type = i_nal_type;
if( b_pic && p_sys->b_slice ) if( b_pic && p_sys->b_slice ) OUTPUT;
OUTPUT;
p_sys->b_slice = VLC_TRUE; p_sys->b_slice = VLC_TRUE;
...@@ -548,8 +567,7 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag ) ...@@ -548,8 +567,7 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
bs_t s; bs_t s;
int i_tmp; int i_tmp;
if( !p_sys->b_sps ) if( !p_sys->b_sps ) msg_Dbg( p_dec, "found NAL_SPS" );
msg_Dbg( p_dec, "found NAL_SPS" );
p_sys->b_sps = VLC_TRUE; p_sys->b_sps = VLC_TRUE;
...@@ -649,8 +667,8 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag ) ...@@ -649,8 +667,8 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
h = bs_read( &s, 16 ); h = bs_read( &s, 16 );
} }
if( h != 0 ) if( h != 0 )
p_dec->fmt_out.video.i_aspect = p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR * w /
VOUT_ASPECT_FACTOR * w / h * p_dec->fmt_out.video.i_width / h * p_dec->fmt_out.video.i_width /
p_dec->fmt_out.video.i_height; p_dec->fmt_out.video.i_height;
else else
p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR; p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR;
...@@ -660,29 +678,25 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag ) ...@@ -660,29 +678,25 @@ static block_t *ParseNALBlock( decoder_t *p_dec, block_t *p_frag )
free( dec ); free( dec );
if( p_sys->b_slice ) if( p_sys->b_slice ) OUTPUT;
OUTPUT;
} }
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[4], p_frag->i_buffer - 4 ); bs_init( &s, &p_frag->p_buffer[4], p_frag->i_buffer - 4 );
if( !p_sys->b_pps ) if( !p_sys->b_pps ) msg_Dbg( p_dec, "found NAL_PPS" );
msg_Dbg( p_dec, "found NAL_PPS" );
p_sys->b_pps = VLC_TRUE; p_sys->b_pps = VLC_TRUE;
/* TODO */ /* TODO */
if( p_sys->b_slice ) if( p_sys->b_slice ) OUTPUT;
OUTPUT;
} }
else if( i_nal_type == NAL_AU_DELIMITER || else if( i_nal_type == NAL_AU_DELIMITER ||
i_nal_type == NAL_SEI || i_nal_type == NAL_SEI ||
( i_nal_type >= 13 && i_nal_type <= 18 ) ) ( i_nal_type >= 13 && i_nal_type <= 18 ) )
{ {
if( p_sys->b_slice ) if( p_sys->b_slice ) OUTPUT;
OUTPUT;
} }
#undef OUTPUT #undef OUTPUT
......
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