summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 30295d9e56..8441a32080 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -1065,6 +1065,9 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
st->codec->sample_rate= 8000;
st->codec->channels= 1; /* really needed */
break;
+ case CODEC_ID_MP2:
+ st->need_parsing = 1;
+ break;
default:
break;
}