packetizer: hxxx: fix DirectTV extraction
[vlc.git] / modules / demux / adaptive / StreamFormat.cpp
blob27364dc7fde26536e725975a290d52074151d5c4
1 /*
2 * StreamFormat.cpp
3 *****************************************************************************
4 * Copyright (C) 2015 - VideoLAN and VLC authors
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as published
8 * by the Free Software Foundation; either version 2.1 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
21 #ifdef HAVE_CONFIG_H
22 # include "config.h"
23 #endif
25 #include "StreamFormat.hpp"
27 using namespace adaptive;
29 StreamFormat::operator unsigned() const
31 return formatid;
34 std::string StreamFormat::str() const
36 switch(formatid)
38 case MPEG2TS:
39 return "TS";
40 case MP4:
41 return "MP4";
42 case WEBVTT:
43 return "WebVTT";
44 case TTML:
45 return "Timed Text";
46 case PACKEDAAC:
47 return "Packed AAC";
48 case UNSUPPORTED:
49 return "Unsupported";
50 default:
51 case UNKNOWN:
52 return "Unknown";
56 StreamFormat::StreamFormat( unsigned formatid_ )
58 formatid = formatid_;
61 StreamFormat::~StreamFormat()
66 bool StreamFormat::operator ==(const StreamFormat &other) const
68 return formatid == other.formatid;
71 bool StreamFormat::operator !=(const StreamFormat &other) const
73 return formatid != other.formatid;