1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
/* smplayer, GUI front-end for mplayer.
Copyright (C) 2006-2018 Ricardo Villalba <rvm@users.sourceforge.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef MEDIASETTINGS_H
#define MEDIASETTINGS_H
/* Settings the user has set for this file, and that we need to */
/* restore the video after a restart */
#include <QString>
#include <QSize>
#include "config.h"
#include "audioequalizerlist.h"
#include "tracks.h"
#include "subtracks.h"
//#define MSET_USE_STARTING_TIME
class QSettings;
class MediaSettings {
public:
enum Denoise { NoDenoise = 0, DenoiseNormal = 1, DenoiseSoft = 2 };
enum Aspect { AspectAuto = 1, Aspect43 = 2, Aspect54 = 3, Aspect149 = 4,
Aspect169 = 5, Aspect1610 = 6, Aspect235 = 7, Aspect11 = 8,
Aspect32 = 9, Aspect1410 = 10, Aspect118 = 11,
AspectNone = 0 };
enum Deinterlace { NoDeinterlace = 0, L5 = 1, Yadif = 2, LB = 3,
Yadif_1 = 4, Kerndeint = 5 };
enum AudioChannels { ChDefault = 0, ChStereo = 2, ChSurround = 4,
ChFull51 = 6, ChFull61 = 7, ChFull71 = 8 };
enum StereoMode { Stereo = 0, Left = 1, Right = 2, Mono = 3, Reverse = 4 };
enum Rotate { NoRotate = -1, Clockwise_flip = 0, Clockwise = 1,
Counterclockwise = 2, Counterclockwise_flip = 3 };
enum IDs { NoneSelected = -1000, SubNone = 90000 };
enum SubFPS { SFPS_None, SFPS_23, SFPS_24, SFPS_25, SFPS_30, SFPS_23976, SFPS_29970 };
MediaSettings();
virtual ~MediaSettings();
virtual void reset();
double current_sec;
int current_subtitle_track;
#ifdef MPV_SUPPORT
int current_secondary_subtitle_track;
#endif
#if PROGRAM_SWITCH
int current_program_id;
#endif
int current_video_id;
int current_audio_id;
int current_title_id;
int current_angle_id;
int aspect_ratio_id;
//bool fullscreen;
int volume;
bool mute;
int brightness, contrast, gamma, hue, saturation;
AudioEqualizerList audio_equalizer;
QString external_subtitles;
int external_subtitles_fps;
QString external_audio; // external audio file
int sub_delay;
int audio_delay;
// Subtitles position (0-100)
int sub_pos;
double sub_scale;
double sub_scale_ass;
int closed_caption_channel; // 0 = disabled
double speed; // Speed of playback: 1.0 = normal speed
int current_deinterlacer;
bool add_letterbox;
// Filters in menu
bool phase_filter;
bool deblock_filter;
bool dering_filter;
bool gradfun_filter;
bool noise_filter;
bool postprocessing_filter;
bool upscaling_filter; //!< Software scaling
int current_denoiser;
int current_unsharp;
QString stereo3d_in;
QString stereo3d_out;
bool karaoke_filter;
bool extrastereo_filter;
bool volnorm_filter;
#ifdef MPV_SUPPORT
bool earwax_filter;
#endif
int audio_use_channels;
int stereo_mode;
double zoom_factor; // mplayerwindow zoom
int rotate;
bool flip; //!< Flip image
bool mirror; //!< Mirrors the image on the Y axis.
bool loop; //!< Loop. If true repeat the file
int A_marker;
int B_marker;
#ifdef BOOKMARKS
QMap<int, QString> bookmarks;
#endif
#ifdef MSET_USE_STARTING_TIME
// This a property of the video and it should be
// in mediadata, but we have to save it to preserve
// this data among restarts.
double starting_time; // Some videos don't start at 0
#endif
//! The codec of the video is ffh264 and it's high definition
bool is264andHD;
QString current_demuxer;
#if ALLOW_DEMUXER_CODEC_CHANGE
// Advanced settings
QString forced_demuxer;
QString forced_video_codec;
QString forced_audio_codec;
// A copy of the original values, so we can restore them.
QString original_demuxer;
QString original_video_codec;
QString original_audio_codec;
#endif
// Options to mplayer (for this file only)
QString mplayer_additional_options;
QString mplayer_additional_video_filters;
QString mplayer_additional_audio_filters;
Tracks videos;
Tracks audios;
SubTracks subs;
// Some things that were before in mediadata
// They can vary, because of filters, so better here
// Resolution used by mplayer
// Can be bigger that video resolution
// because of the aspect ratio or expand filter
int win_width;
int win_height;
double win_aspect();
//! Returns the aspect as a double. Returns 0 if aspect == AspectNone.
double aspectToNum(Aspect aspect);
static QString aspectToString(Aspect aspect);
void list();
void save(QSettings * set, int player_id);
void load(QSettings * set, int player_id);
};
#endif
|