?? h264decodedlg.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_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 + -