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

📄 pp_imgtype.cc

📁 PIXIL is a small footprint operating environment, complete with PDA PIM applications, a browser and
💻 CC
字号:
#include "vpostproc/pp_imgtype.hh"#include "video12/constants.hh"#include <iostream.h>void VideoPostprocessor_ImageType::Render(DecodedImageData* dimg){  Assert(dimg->m_picdata1);  if (dimg->m_picdata1->m_picture_structure == PICSTRUCT_FramePicture)    cout << "Frame ";  else    cout << "Field ";  if (dimg->m_picdata1->m_picture_coding_type == PICTYPE_B)    cout << "B\n";  else if (dimg->m_picdata1->m_picture_coding_type == PICTYPE_P)    cout << "P\n";  else if (dimg->m_picdata1->m_picture_coding_type == PICTYPE_I)    cout << "I\n";  else    cout << "D\n";}

⌨️ 快捷键说明

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