diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-09-28 17:54:59 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-09-28 17:54:59 +0000 |
commit | e6f4c806e3097db777e92e4669f14d0c561e2251 (patch) | |
tree | 8968499cd7cf19ce5c6139190003d3f840e08801 /libavformat/mov.c | |
parent | 0299a87c417a20506641433e255421a18e1b895b (diff) | |
download | ffmpeg-e6f4c806e3097db777e92e4669f14d0c561e2251.tar.gz |
add lpcm fourcc
Originally committed as revision 6372 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 6c4f7d4739..183abdceec 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -147,6 +147,7 @@ static const CodecTag mov_audio_tags[] = { { CODEC_ID_QDM2,MKTAG('Q', 'D', 'M', '2') }, /* QDM2 */ { CODEC_ID_DVAUDIO, MKTAG('v', 'd', 'v', 'a') }, { CODEC_ID_DVAUDIO, MKTAG('d', 'v', 'c', 'a') }, + { CODEC_ID_PCM_S16LE, MKTAG('l', 'p', 'c', 'm') }, { CODEC_ID_NONE, 0 }, }; |