mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
for #738, refine the dvr segmenter.
This commit is contained in:
parent
31191f2650
commit
8c01f52372
9 changed files with 477 additions and 293 deletions
|
@ -3783,3 +3783,18 @@ int SrsMp4Decoder::do_load_next_box(SrsMp4Box** ppbox, uint32_t required_box_typ
|
|||
return ret;
|
||||
}
|
||||
|
||||
SrsMp4Encoder::SrsMp4Encoder()
|
||||
{
|
||||
writer = NULL;
|
||||
}
|
||||
|
||||
SrsMp4Encoder::~SrsMp4Encoder()
|
||||
{
|
||||
}
|
||||
|
||||
int SrsMp4Encoder::initialize(ISrsWriter* w)
|
||||
{
|
||||
writer = w;
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue