summaryrefslogtreecommitdiff
path: root/libavformat/flv.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-06-28 23:57:31 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-06-28 23:57:31 +0200
commit4453f6b8613b0803246c1a9160c8270ec9de1237 (patch)
tree3a641fda838ccb4130bbf5e2d1d29c8bbcc69fa4 /libavformat/flv.h
parent7877b50d181be1e044eb8b57f203c763297651b1 (diff)
parentb92c7ee662b618518bff366af3274784fb141dde (diff)
downloadffmpeg-4453f6b8613b0803246c1a9160c8270ec9de1237.tar.gz
Merge remote-tracking branch 'qatar/master'
* qatar/master: flv: add support for G.711 doc: git: Add checklist with test steps to perform before pushing flvenc: K&R formatting cosmetics movenc: Add channel layouts for PCM. Conflicts: libavformat/flvenc.c tests/ref/fate/acodec-pcm-s16be tests/ref/fate/acodec-pcm-s24be tests/ref/fate/acodec-pcm-s32be tests/ref/fate/acodec-pcm-s8 Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/flv.h')
-rw-r--r--libavformat/flv.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/flv.h b/libavformat/flv.h
index c9f7b83de0..db9468f469 100644
--- a/libavformat/flv.h
+++ b/libavformat/flv.h
@@ -94,6 +94,8 @@ enum {
FLV_CODECID_NELLYMOSER_16KHZ_MONO = 4 << FLV_AUDIO_CODECID_OFFSET,
FLV_CODECID_NELLYMOSER_8KHZ_MONO = 5 << FLV_AUDIO_CODECID_OFFSET,
FLV_CODECID_NELLYMOSER = 6 << FLV_AUDIO_CODECID_OFFSET,
+ FLV_CODECID_PCM_ALAW = 7 << FLV_AUDIO_CODECID_OFFSET,
+ FLV_CODECID_PCM_MULAW = 8 << FLV_AUDIO_CODECID_OFFSET,
FLV_CODECID_AAC = 10<< FLV_AUDIO_CODECID_OFFSET,
FLV_CODECID_SPEEX = 11<< FLV_AUDIO_CODECID_OFFSET,
};