diff options
author | Martin Storsjö <martin@martin.st> | 2018-10-05 16:11:08 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2018-11-05 15:53:39 +0200 |
commit | e7ed9d81bff0e244fce1bb35e9fda2c255c1c2bb (patch) | |
tree | 7813bec5a07d2da9202f4463abfc5eaebab8411b /libavformat/flv.h | |
parent | 882ae091d48b112004b977314884176841f12cef (diff) | |
download | ffmpeg-e7ed9d81bff0e244fce1bb35e9fda2c255c1c2bb.tar.gz |
flvdec: Rename FLV_STREAM_TYPE_DATA into FLV_STREAM_TYPE_SUBTITLE
This is always treated as a subtitle at the moment anyway.
Signed-off-by: Martin Storsjö <martin@martin.st>
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 df5ce3d17f..3aabb3adc9 100644 --- a/libavformat/flv.h +++ b/libavformat/flv.h @@ -65,7 +65,7 @@ enum FlvTagType { enum { FLV_STREAM_TYPE_VIDEO, FLV_STREAM_TYPE_AUDIO, - FLV_STREAM_TYPE_DATA, + FLV_STREAM_TYPE_SUBTITLE, FLV_STREAM_TYPE_NB, }; |