xref: /OK3568_Linux_fs/app/multivideoplayer/main.cpp (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /****************************************************************************
2*4882a593Smuzhiyun **
3*4882a593Smuzhiyun ** Copyright (C) 2017 The Qt Company Ltd.
4*4882a593Smuzhiyun ** Contact: https://www.qt.io/licensing/
5*4882a593Smuzhiyun **
6*4882a593Smuzhiyun ** This file is part of the examples of the Qt Toolkit.
7*4882a593Smuzhiyun **
8*4882a593Smuzhiyun ** $QT_BEGIN_LICENSE:BSD$
9*4882a593Smuzhiyun ** Commercial License Usage
10*4882a593Smuzhiyun ** Licensees holding valid commercial Qt licenses may use this file in
11*4882a593Smuzhiyun ** accordance with the commercial license agreement provided with the
12*4882a593Smuzhiyun ** Software or, alternatively, in accordance with the terms contained in
13*4882a593Smuzhiyun ** a written agreement between you and The Qt Company. For licensing terms
14*4882a593Smuzhiyun ** and conditions see https://www.qt.io/terms-conditions. For further
15*4882a593Smuzhiyun ** information use the contact form at https://www.qt.io/contact-us.
16*4882a593Smuzhiyun **
17*4882a593Smuzhiyun ** BSD License Usage
18*4882a593Smuzhiyun ** Alternatively, you may use this file under the terms of the BSD license
19*4882a593Smuzhiyun ** as follows:
20*4882a593Smuzhiyun **
21*4882a593Smuzhiyun ** "Redistribution and use in source and binary forms, with or without
22*4882a593Smuzhiyun ** modification, are permitted provided that the following conditions are
23*4882a593Smuzhiyun ** met:
24*4882a593Smuzhiyun **   * Redistributions of source code must retain the above copyright
25*4882a593Smuzhiyun **     notice, this list of conditions and the following disclaimer.
26*4882a593Smuzhiyun **   * Redistributions in binary form must reproduce the above copyright
27*4882a593Smuzhiyun **     notice, this list of conditions and the following disclaimer in
28*4882a593Smuzhiyun **     the documentation and/or other materials provided with the
29*4882a593Smuzhiyun **     distribution.
30*4882a593Smuzhiyun **   * Neither the name of The Qt Company Ltd nor the names of its
31*4882a593Smuzhiyun **     contributors may be used to endorse or promote products derived
32*4882a593Smuzhiyun **     from this software without specific prior written permission.
33*4882a593Smuzhiyun **
34*4882a593Smuzhiyun **
35*4882a593Smuzhiyun ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
36*4882a593Smuzhiyun ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
37*4882a593Smuzhiyun ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
38*4882a593Smuzhiyun ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
39*4882a593Smuzhiyun ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40*4882a593Smuzhiyun ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41*4882a593Smuzhiyun ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
42*4882a593Smuzhiyun ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
43*4882a593Smuzhiyun ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
44*4882a593Smuzhiyun ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
45*4882a593Smuzhiyun ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
46*4882a593Smuzhiyun **
47*4882a593Smuzhiyun ** $QT_END_LICENSE$
48*4882a593Smuzhiyun **
49*4882a593Smuzhiyun ****************************************************************************/
50*4882a593Smuzhiyun 
51*4882a593Smuzhiyun #include "multivideoplayer.h"
52*4882a593Smuzhiyun #include <QApplication>
53*4882a593Smuzhiyun #include <QCommandLineParser>
54*4882a593Smuzhiyun #include <QCommandLineOption>
55*4882a593Smuzhiyun #include <QDebug>
56*4882a593Smuzhiyun #include <QDir>
57*4882a593Smuzhiyun #include <QtWidgets>
58*4882a593Smuzhiyun #define PC_VIDEO QApplication::applicationDirPath() + "/../../device/rockchip/oem/oem_normal/SampleVideo_1280x720_5mb.mp4"
59*4882a593Smuzhiyun #define DEVICE_VIDEO "/oem/SampleVideo_1280x720_5mb.mp4"
main(int argc,char ** argv)60*4882a593Smuzhiyun int main(int argc, char **argv)
61*4882a593Smuzhiyun {
62*4882a593Smuzhiyun     QApplication app(argc, argv);
63*4882a593Smuzhiyun 
64*4882a593Smuzhiyun     QCoreApplication::setApplicationName("MultiVideoPlayer");
65*4882a593Smuzhiyun     QCoreApplication::setOrganizationName("QtProject");
66*4882a593Smuzhiyun     QCoreApplication::setApplicationVersion(QT_VERSION_STR);
67*4882a593Smuzhiyun     QCommandLineParser parser;
68*4882a593Smuzhiyun     parser.setApplicationDescription("Qt MultiMedia Player");
69*4882a593Smuzhiyun     parser.addHelpOption();
70*4882a593Smuzhiyun     parser.addVersionOption();
71*4882a593Smuzhiyun     parser.addPositionalArgument("url", "The URL to open.");
72*4882a593Smuzhiyun     parser.process(app);
73*4882a593Smuzhiyun     QStringList list;
74*4882a593Smuzhiyun     QString pcvideo = PC_VIDEO;
75*4882a593Smuzhiyun     if (!parser.positionalArguments().isEmpty()) {
76*4882a593Smuzhiyun         list = parser.positionalArguments();
77*4882a593Smuzhiyun     }else if(QFile::exists(pcvideo)){
78*4882a593Smuzhiyun         QFile file(pcvideo);
79*4882a593Smuzhiyun         if(file.exists()){
80*4882a593Smuzhiyun             qDebug() << "opening" << file.fileName();
81*4882a593Smuzhiyun             list << file.fileName() << file.fileName() << file.fileName()
82*4882a593Smuzhiyun                  << file.fileName() << file.fileName() << file.fileName()
83*4882a593Smuzhiyun                  << file.fileName() << file.fileName() << file.fileName() ;
84*4882a593Smuzhiyun         }
85*4882a593Smuzhiyun     }else if(QFile::exists(DEVICE_VIDEO)){
86*4882a593Smuzhiyun         QFile file(DEVICE_VIDEO);
87*4882a593Smuzhiyun         if(file.exists()){
88*4882a593Smuzhiyun             qDebug() << "opening" << file.fileName();
89*4882a593Smuzhiyun             list << file.fileName() << file.fileName() << file.fileName()
90*4882a593Smuzhiyun                  << file.fileName() << file.fileName() << file.fileName()
91*4882a593Smuzhiyun                  << file.fileName() << file.fileName() << file.fileName() ;
92*4882a593Smuzhiyun         }
93*4882a593Smuzhiyun     }
94*4882a593Smuzhiyun     MultiVideoPlayer player(list);
95*4882a593Smuzhiyun     player.play();
96*4882a593Smuzhiyun     player.show();
97*4882a593Smuzhiyun     return app.exec();
98*4882a593Smuzhiyun }
99*4882a593Smuzhiyun 
100