mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-29 22:00:58 +02:00
add one missing check for stream existence in read_elst, fix #1364
backported patch r19792 by bcoudurier Originally committed as revision 21709 to svn://svn.ffmpeg.org/ffmpeg/branches/0.5
This commit is contained in:
parent
95f90d27d2
commit
e91ba7dc9d
@ -1776,9 +1776,13 @@ free_and_return:
|
|||||||
/* edit list atom */
|
/* edit list atom */
|
||||||
static int mov_read_elst(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
|
static int mov_read_elst(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
|
||||||
{
|
{
|
||||||
MOVStreamContext *sc = c->fc->streams[c->fc->nb_streams-1]->priv_data;
|
MOVStreamContext *sc;
|
||||||
int i, edit_count;
|
int i, edit_count;
|
||||||
|
|
||||||
|
if (c->fc->nb_streams < 1)
|
||||||
|
return 0;
|
||||||
|
sc = c->fc->streams[c->fc->nb_streams-1]->priv_data;
|
||||||
|
|
||||||
get_byte(pb); /* version */
|
get_byte(pb); /* version */
|
||||||
get_be24(pb); /* flags */
|
get_be24(pb); /* flags */
|
||||||
edit_count = get_be32(pb); /* entries */
|
edit_count = get_be32(pb); /* entries */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user