Fetch the repository succeeded.
This action will force synchronization from leixiaohua1020/H264_Analysis_old1, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
/*
* H.264 分析器
* H.264 Analysis
*
* 雷霄骅 Lei Xiaohua
* leixiaohua1020@126.com
* 中国传媒大学/数字电视技术
* Communication University of China / Digital TV Technology
* http://blog.csdn.net/leixiaohua1020
*
* H.264码流分析工具
* H.264 Stream Analysis Tools
*
*/
#pragma once
#include "resource.h"
#include "stdafx.h"
#include "NALParse.h"
#include "h264_analyze.h"
#include <vector>
using std::vector;
// CSpecialVH264Dlg 对话框
class CSpecialVH264Dlg : public CDialogEx
{
// 构造
public:
CSpecialVH264Dlg(CWnd* pParent = NULL); // 标准构造函数
// 对话框数据
enum { IDD = IDD_SPECIAL_V_H264 };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
// 实现
protected:
HICON m_hIcon;
// 生成的消息映射函数
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
CMFCEditBrowseCtrl m_vh264inputurl;
CListCtrl m_vh264nallist;
CButton m_vh264nallistmaxnum;
afx_msg void OnBnClickedVH264InputurlOpen();
void OnCustomdrawMyList ( NMHDR* pNMHDR, LRESULT* pResult );
int nl_index;
int AppendNLInfo(int nal_reference_idc,int nal_unit_type,int len,int data_lenth,int data_offset);
char fileurl[MAX_URL_LENGTH];
void SystemClear();
afx_msg void OnBnClickedVH264About();
CEdit m_vh264nalinfo;
//一条Packet记录
typedef struct NALInfo{
int data_offset;
int data_lenth;
}NALInfo;
vector<NALInfo> nl_infovector;
//-----
afx_msg void OnDropFiles(HDROP hDropInfo);
CString text;
CComboBox m_vh264lang;
afx_msg void OnSelchangeVH264Lang();
afx_msg void OnItemchangedVH264Nallist(NMHDR *pNMHDR, LRESULT *pResult);
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。