mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
avformat/rmdec: fix support for 0 sized mdpr
Fixes Ticket4393
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit df43d03731
)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
dfce316c12
commit
6a4d1325e2
@ -320,6 +320,8 @@ int ff_rm_read_mdpr_codecdata(AVFormatContext *s, AVIOContext *pb,
|
||||
|
||||
if (codec_data_size > INT_MAX)
|
||||
return AVERROR_INVALIDDATA;
|
||||
if (codec_data_size == 0)
|
||||
return 0;
|
||||
|
||||
avpriv_set_pts_info(st, 64, 1, 1000);
|
||||
codec_pos = avio_tell(pb);
|
||||
|
Loading…
Reference in New Issue
Block a user