zhuizhu 8 tháng trước cách đây
mục cha
commit
6df94206f4

+ 0 - 8
AvPlayer2/app_settings.cpp

@@ -1,11 +1,3 @@
-// ***********************************************************/
-// app_settings.cpp
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// app settings load and save
-// ***********************************************************/
-
 #include "app_settings.h"
 
 const AppSettings::Section AppSettings::m_sections[] = {

+ 0 - 8
AvPlayer2/audio_decode_thread.cpp

@@ -1,11 +1,3 @@
-// ***********************************************************/
-// audio_decode_thread.cpp
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// audio decode thread
-// ***********************************************************/
-
 #include "audio_decode_thread.h"
 #include <QLoggingCategory>
 #include "AVPlayer2/playercontroller.h"

+ 0 - 8
AvPlayer2/audio_effect_gl.cpp

@@ -1,11 +1,3 @@
-// ***********************************************************/
-// audio_effect_gl.cpp
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// audio visualization OpenGL window
-// ***********************************************************/
-
 #include <QApplication>
 #include <QDebug>
 #include <QPainter>

+ 0 - 8
AvPlayer2/audio_effect_helper.cpp

@@ -1,11 +1,3 @@
-// ***********************************************************/
-// audio_effect_helper.cpp
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// audio visualization draw functions
-// ***********************************************************/
-
 #include <QPaintEvent>
 #include <QPainter>
 #include <QWidget>

+ 0 - 8
AvPlayer2/audio_play_thread.cpp

@@ -1,11 +1,3 @@
-// ***********************************************************/
-// audio_play_thread.cpp
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// audio play thread
-// ***********************************************************/
-
 #include "audio_play_thread.h"
 #include "AVPlayer2/playercontroller.h"
 #include <utility>

+ 0 - 6
AvPlayer2/clickable_slider.cpp

@@ -1,10 +1,4 @@
-// ***********************************************************/
-// clickable_slider.cpp
 //
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// Clickable slider
-// ***********************************************************/
 
 #include "clickable_slider.h"
 #include <QDebug>

+ 0 - 8
AvPlayer2/common.cpp

@@ -1,11 +1,3 @@
-// ***********************************************************/
-// common.cpp
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// Common QT funtions
-// *
-
 #include "common.h"
 
 QString appendPath(const QString& path, const QString& sub_path)

+ 0 - 6
AvPlayer2/ffmpeg_init.cpp

@@ -1,10 +1,4 @@
-// ***********************************************************/
-// ffmpeg_init.cpp
 //
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// FFmpeg utils.
-// ***********************************************************/
 
 #include "ffmpeg_init.h"
 

+ 0 - 11
AvPlayer2/log.cpp

@@ -1,14 +1,3 @@
-// ***********************************************************/
-// log.cpp
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// Log handling module.
-//
-// QT bug tracking:
-// https://bugreports.qt.io/secure/Dashboard.jspa
-// ***********************************************************/
-
 #include "log.h"
 #include "qtextcodec.h"
 #include <Windows.h>

+ 0 - 8
AvPlayer2/network_url_dlg.cpp

@@ -1,11 +1,3 @@
-// ***********************************************************/
-// network_url_dlg.cpp
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// network stream media open dialog
-// ***********************************************************/
-
 #include <QMessageBox>
 #include "network_url_dlg.h"
 

+ 0 - 8
AvPlayer2/play_control_window.cpp

@@ -1,11 +1,3 @@
-// ***********************************************************/
-// play_control_window.cpp
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// video play control panel.
-// ***********************************************************/
-
 #include "play_control_window.h"
 #include "mainwindowa.h"
 

+ 0 - 6
AvPlayer2/playlist_window.cpp

@@ -1,10 +1,4 @@
-// ***********************************************************/
-// playlist_window.cpp
 //
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// playlist window.
-// ***********************************************************/
 
 #include "playlist_window.h"
 #include "common.h"

+ 0 - 8
AvPlayer2/qimage_operation.cpp

@@ -1,11 +1,3 @@
-// ***********************************************************/
-// qimage_operation.cpp
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// QImage processing for CV effects.
-// ***********************************************************/
-
 #include "qimage_operation.h"
 
 void image_info(const QImage& img)

+ 0 - 8
AvPlayer2/read_thread.cpp

@@ -1,11 +1,3 @@
-// ***********************************************************/
-// read_thread.cpp
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// read packets thread.
-// ***********************************************************/
-
 #include "read_thread.h"
 #include "AVPlayer2/playercontroller.h"
 #include <QLoggingCategory>

+ 0 - 7
AvPlayer2/stopplay_waiting_thread.cpp

@@ -1,10 +1,3 @@
-// ***********************************************************/
-// stopplay_waiting_thread.cpp
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// Waiting play-stop thread
-// ***********************************************************/
 #include "stopplay_waiting_thread.h"
 #include "playercontroller.h"
 #include <QLoggingCategory>

+ 0 - 6
AvPlayer2/subtitle_decode_thread.cpp

@@ -1,10 +1,4 @@
-// ***********************************************************/
-// subtitle_decode_thread.cpp
 //
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// Subtitles decode thread.
-// ***********************************************************/
 
 #include "subtitle_decode_thread.h"
 #include <QLoggingCategory>

+ 0 - 8
AvPlayer2/version.h

@@ -1,11 +1,3 @@
-// ***********************************************************/
-// version.h
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// Version definition of this software.
-// ***********************************************************/
-
 #pragma once
 
 #define VERSION_MAJOR 2

+ 0 - 9
AvPlayer2/video_decode_thread.cpp

@@ -1,12 +1,3 @@
-// ***********************************************************/
-// video_decode_thread.cpp
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// Video decode thread. This section includes queues
-// and dxva2 hardware transmit decoded frame.
-// ***********************************************************/
-
 #include "video_decode_thread.h"
 
 #include <QLoggingCategory>

+ 0 - 10
AvPlayer2/video_play_thread.cpp

@@ -1,13 +1,3 @@
-// ***********************************************************/
-// video_play_thread.cpp
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// Video play thread. This section includes key code for
-// synchronizing video frames and audio using pts/dts,
-//  as well as subtitle processing.
-// ***********************************************************/
-
 #include "video_play_thread.h"
 #include "AVPlayer2/playercontroller.h"
 #include <QLoggingCategory>

+ 0 - 8
AvPlayer2/video_state.cpp

@@ -1,11 +1,3 @@
-// ***********************************************************/
-// video_state.cpp
-//
-//      Copy Right @ Steven Huang. All rights reserved.
-//
-// A/V synchronization state. This code is referenced
-// from ffplay.c in Ffmpeg library.
-// ***********************************************************/
 #include "video_state.h"
 
 int infinite_buffer = -1;