Commit b5d4c0e2 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Support Speex in isom.

Adobe Flash Media Server produces such files although the f4v
specification does not allow Speex (nor Nellymoser).
parent d898ab90
......@@ -261,7 +261,7 @@ const AVCodecTag codec_movaudio_tags[] = {
{ CODEC_ID_GSM, MKTAG('a', 'g', 's', 'm') },
{ CODEC_ID_ALAC, MKTAG('a', 'l', 'a', 'c') }, /* Apple Lossless */
{ CODEC_ID_NELLYMOSER, MKTAG('n', 'm', 'o', 's') },
{ CODEC_ID_NELLYMOSER, MKTAG('n', 'm', 'o', 's') }, /* Flash Media Server */
{ CODEC_ID_QCELP, MKTAG('Q','c','l','p') },
{ CODEC_ID_QCELP, MKTAG('Q','c','l','q') },
......@@ -270,6 +270,8 @@ const AVCodecTag codec_movaudio_tags[] = {
{ CODEC_ID_QDMC, MKTAG('Q', 'D', 'M', 'C') }, /* QDMC */
{ CODEC_ID_QDM2, MKTAG('Q', 'D', 'M', '2') }, /* QDM2 */
{ CODEC_ID_SPEEX, MKTAG('s','p','e','x') }, /* Flash Media Server */
{ CODEC_ID_DVAUDIO, MKTAG('v', 'd', 'v', 'a') },
{ CODEC_ID_DVAUDIO, MKTAG('d', 'v', 'c', 'a') },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment