Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2016-01-05 15:45:12 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2016-01-05 15:45:12 +0300
commite5691716f0a2c4b85054aa335e6139039ad5991f (patch)
tree49c1bdf554278e1d39d79304e52365474aec27e5 /demuxer/Demuxers/StreamInfo.h
parent526cac14b0b9f0f124d1e6d9d4400d01fca89da8 (diff)
Use a std:deque for the media types to allow insertion at the front
Diffstat (limited to 'demuxer/Demuxers/StreamInfo.h')
-rw-r--r--demuxer/Demuxers/StreamInfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/demuxer/Demuxers/StreamInfo.h b/demuxer/Demuxers/StreamInfo.h
index 2376794d..eb7d57a1 100644
--- a/demuxer/Demuxers/StreamInfo.h
+++ b/demuxer/Demuxers/StreamInfo.h
@@ -19,7 +19,7 @@
#pragma once
-#include <vector>
+#include <deque>
class CStreamInfo
{
@@ -27,6 +27,6 @@ public:
CStreamInfo();
virtual ~CStreamInfo();
- std::vector<CMediaType> mtypes;
+ std::deque<CMediaType> mtypes;
std::string codecInfo;
};