⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 h264decodedlg.h

📁 H264EncPlayer,H264协议解码与播放代码
💻 H
字号:
// H264DecodeDlg.h : header file
//

#if !defined(AFX_H264DECODEDLG_H__4EBECA18_2C94_45CC_9D5E_1164DEC0EDF6__INCLUDED_)
#define AFX_H264DECODEDLG_H__4EBECA18_2C94_45CC_9D5E_1164DEC0EDF6__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

#define IMAGE_WIDTH 176
#define IMAGE_HEIGHT 144

//H264需要包含的头文件
#include "config.h"
//Ti_DSP Platform ported by YouXiaoquan,HFUT-Ti United Lab,China
//YouXiaoquan@126.com
#include "stdio.h"
#ifndef CHIP_DM642
#ifndef _WIN32_WCE
#include "sys/timeb.h"
#endif
#endif
#include "time.h"

#include "stdlib.h"
#ifndef CHIP_DM642
#include "memory.h"
#endif
#include "math.h"
#include "T264.h"
#include "utility.h"
#include "string.h"

/////////////////////////////////////////////////////////////////////////////
// CH264DecodeDlg dialog

class CH264DecodeDlg : public CDialog
{
// Construction
public:
	CH264DecodeDlg(CWnd* pParent = NULL);	// standard constructor

	//解码文件名称
	CString m_strDecodeFile;

	//解码线程函数
	static DWORD DecodeThread(void *pDlg);
	HANDLE hDecodeThread;
	DWORD dwThreadID;
	BOOL m_bDecoding;

	void DisplayVideo(unsigned char *rgbdata);

// Dialog Data
	//{{AFX_DATA(CH264DecodeDlg)
	enum { IDD = IDD_H264DECODE_DIALOG };
		// NOTE: the ClassWizard will add data members here
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CH264DecodeDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CH264DecodeDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnDecode();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

private:
	void init_param();
	void encode();
	int32_t decode();
};

//{{AFX_INSERT_LOCATION}}
// Microsoft eMbedded Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_H264DECODEDLG_H__4EBECA18_2C94_45CC_9D5E_1164DEC0EDF6__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -