summaryrefslogtreecommitdiffstats
path: root/libavformat
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mov_esds.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libavformat/mov_esds.c b/libavformat/mov_esds.c
index 2ecf037..a444d96 100644
--- a/libavformat/mov_esds.c
+++ b/libavformat/mov_esds.c
@@ -23,7 +23,7 @@
int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb)
{
AVStream *st;
- int tag;
+ int tag, ret = 0;
if (fc->nb_streams < 1)
return 0;
@@ -38,6 +38,7 @@ int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb)
ff_mp4_read_descr(fc, pb, &tag);
if (tag == MP4DecConfigDescrTag)
- ff_mp4_read_dec_config_descr(fc, st, pb);
- return 0;
+ ret = ff_mp4_read_dec_config_descr(fc, st, pb);
+
+ return ret;
}
OpenPOWER on IntegriCloud