diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-06-11 14:27:27 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-06-12 17:02:49 +0100 |
commit | a7ac1a7b94447f33ae95be4d6d186e2775977f91 (patch) | |
tree | 87bfae1cbeed5835cf93c1a8c35d9dcd89642169 /libavformat/flv.h | |
parent | 30dfc1dad4285e7362ce3f596d7c5d5d9b7fb33d (diff) | |
download | ffmpeg-a7ac1a7b94447f33ae95be4d6d186e2775977f91.tar.gz |
flv: Name an enum and use its type
Diffstat (limited to 'libavformat/flv.h')
-rw-r--r-- | libavformat/flv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/flv.h b/libavformat/flv.h index fe0fc90d83..7c08117f92 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, |