summaryrefslogtreecommitdiff
path: root/libavformat/flv.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-24 00:57:15 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-24 00:57:15 +0000
commit44de39f93c57f3761a00a85dc459decc3fdc1839 (patch)
treec89443136f265b70b3f4c0b4e5a7db07cd3b37fb /libavformat/flv.h
parent7bb8d51c1f17823f27e680b70dd18246bf6731ee (diff)
flv/swf do not have a big endian codec id, they only support
little endian and native endian. Originally committed as revision 12183 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/flv.h')
-rw-r--r--libavformat/flv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/flv.h b/libavformat/flv.h
index 59418390e4..4501527aa6 100644
--- a/libavformat/flv.h
+++ b/libavformat/flv.h
@@ -71,7 +71,7 @@ enum {
};
enum {
- FLV_CODECID_PCM_BE = 0,
+ FLV_CODECID_PCM = 0,
FLV_CODECID_ADPCM = 1 << FLV_AUDIO_CODECID_OFFSET,
FLV_CODECID_MP3 = 2 << FLV_AUDIO_CODECID_OFFSET,
FLV_CODECID_PCM_LE = 3 << FLV_AUDIO_CODECID_OFFSET,