summaryrefslogtreecommitdiff
path: root/libavformat/flv.h
diff options
context:
space:
mode:
authorJoseph Wecker <jwecker@justin.tv>2011-08-25 18:36:32 -0700
committerMichael Niedermayer <michaelni@gmx.at>2011-09-07 02:36:42 +0200
commitc054f11606d76022e990891654ed40d63b863b06 (patch)
tree5396317daf0e9a694d382a22296a0026dc611c6a /libavformat/flv.h
parent30bcd6a945ae296ef7b36a91cc21789a05de85d9 (diff)
flvdec: Started to remove most of the "only 1-audio+1-video" assumptions
Diffstat (limited to 'libavformat/flv.h')
-rw-r--r--libavformat/flv.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/flv.h b/libavformat/flv.h
index bca17fc643..2165357b6b 100644
--- a/libavformat/flv.h
+++ b/libavformat/flv.h
@@ -63,6 +63,12 @@ enum {
};
enum {
+ FLV_STREAM_TYPE_VIDEO,
+ FLV_STREAM_TYPE_AUDIO,
+ FLV_STREAM_TYPE_DATA,
+};
+
+enum {
FLV_MONO = 0,
FLV_STEREO = 1,
};