mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
For #307, fix build warnings for rtc
This commit is contained in:
parent
dae7af8444
commit
c1e124786c
3 changed files with 6 additions and 5 deletions
3
trunk/3rdparty/ffmpeg-4.2-fit/.gitignore
vendored
3
trunk/3rdparty/ffmpeg-4.2-fit/.gitignore
vendored
|
@ -15,4 +15,5 @@ libavutil/lib.version
|
|||
libavcodec/libavcodec.version
|
||||
libavutil/libavutil.version
|
||||
libswresample/libswresample.version
|
||||
libavutil/ffversion.h
|
||||
libavutil/ffversion.h
|
||||
libavutil/avconfig.h
|
||||
|
|
|
@ -2744,7 +2744,7 @@ SrsMp4DataEntryBox* SrsMp4DataReferenceBox::entry_at(int index)
|
|||
return entries.at(index);
|
||||
}
|
||||
|
||||
SrsMp4DataReferenceBox* SrsMp4DataReferenceBox::append(SrsMp4DataEntryBox* v)
|
||||
SrsMp4DataReferenceBox* SrsMp4DataReferenceBox::append2(SrsMp4DataEntryBox* v)
|
||||
{
|
||||
entries.push_back(v);
|
||||
return this;
|
||||
|
@ -3765,7 +3765,7 @@ SrsMp4SampleEntry* SrsMp4SampleDescriptionBox::entrie_at(int index)
|
|||
return entries.at(index);
|
||||
}
|
||||
|
||||
SrsMp4SampleDescriptionBox* SrsMp4SampleDescriptionBox::append(SrsMp4SampleEntry* v)
|
||||
SrsMp4SampleDescriptionBox* SrsMp4SampleDescriptionBox::append2(SrsMp4SampleEntry* v)
|
||||
{
|
||||
entries.push_back(v);
|
||||
return this;
|
||||
|
|
|
@ -1173,7 +1173,7 @@ public:
|
|||
public:
|
||||
virtual uint32_t entry_count();
|
||||
virtual SrsMp4DataEntryBox* entry_at(int index);
|
||||
virtual SrsMp4DataReferenceBox* append(SrsMp4DataEntryBox* v);
|
||||
virtual SrsMp4DataReferenceBox* append2(SrsMp4DataEntryBox* v);
|
||||
protected:
|
||||
virtual int nb_header();
|
||||
virtual srs_error_t encode_header(SrsBuffer* buf);
|
||||
|
@ -1520,7 +1520,7 @@ public:
|
|||
public:
|
||||
virtual uint32_t entry_count();
|
||||
virtual SrsMp4SampleEntry* entrie_at(int index);
|
||||
virtual SrsMp4SampleDescriptionBox* append(SrsMp4SampleEntry* v);
|
||||
virtual SrsMp4SampleDescriptionBox* append2(SrsMp4SampleEntry* v);
|
||||
protected:
|
||||
virtual int nb_header();
|
||||
virtual srs_error_t encode_header(SrsBuffer* buf);
|
||||
|
|
Loading…
Reference in a new issue