[FFmpeg-cvslog] flv: Name an enum and use its type

Vittorio Giovara git at videolan.org
Fri Jun 12 23:03:04 CEST 2015


ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Thu Jun 11 14:27:27 2015 +0100| [a7ac1a7b94447f33ae95be4d6d186e2775977f91] | committer: Vittorio Giovara

flv: Name an enum and use its type

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a7ac1a7b94447f33ae95be4d6d186e2775977f91
---

 libavformat/flv.h    |    2 +-
 libavformat/flvdec.c |    3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/libavformat/flv.h b/libavformat/flv.h
index fe0fc90..7c08117 100644
--- a/libavformat/flv.h
+++ b/libavformat/flv.h
@@ -51,7 +51,7 @@ enum {
     FLV_HEADER_FLAG_HASAUDIO = 4,
 };
 
-enum {
+enum FlvTagType {
     FLV_TAG_TYPE_AUDIO = 0x08,
     FLV_TAG_TYPE_VIDEO = 0x09,
     FLV_TAG_TYPE_META  = 0x12,
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c
index eb31a6e..3b0370c 100644
--- a/libavformat/flvdec.c
+++ b/libavformat/flvdec.c
@@ -737,7 +737,8 @@ skip:
 static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
 {
     FLVContext *flv = s->priv_data;
-    int ret, i, type, size, flags, is_audio;
+    int ret, i, size, flags, is_audio;
+    enum FlvTagType type;
     int64_t next, pos;
     int64_t dts, pts = AV_NOPTS_VALUE;
     int sample_rate = 0, channels = 0;



More information about the ffmpeg-cvslog mailing list