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

📄 lavinfo.c

📁 Motion JPEG编解码器源代码
💻 C
字号:
/* lavinfo - give info  * *  This program is free software; you can redistribute it and/or modify *  it under the terms of the GNU General Public License as published by *  the Free Software Foundation; either version 2 of the License, or *  (at your option) any later version. * *  This program is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *  GNU General Public License for more details. * *  You should have received a copy of the GNU General Public License *  along with this program; if not, write to the Free Software *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */#include <config.h>#include <stdio.h>#include <lav_io.h>#include <editlist.h>#include <mjpeg_logging.h>int verbose = -1;EditList el;int main(int argc, char *argv[]){  const char *p;   if(argc <=1) {      printf("Usage: %s file1 [ file2 file3 ... ]\n",argv[0]);      printf("\ttakes a list of editlist or lav files, and prints out info about them\n");      printf("\tmust all be of same dimensions\n");      exit(1);   }	(void)mjpeg_default_handler_verbosity(verbose);	read_video_files(argv+1, argc-1, &el,0);   /* Video  */   printf("video_frames=%li\n",el.video_frames);   printf("video_width=%li\n",el.video_width);   printf("video_height=%li\n",el.video_height);   switch (el.video_inter)          {          case Y4M_ILACE_NONE:	       p = "p";	       break;	  case Y4M_ILACE_BOTTOM_FIRST:	       p = "b";	       break;	  case Y4M_ILACE_TOP_FIRST:	       p = "t";	       break;	  case Y4M_ILACE_MIXED:	       p = "m";	       break;	  default:	       p = "***BOGUS/UNKNOWN*** interlacing";	       break;	  }   printf("video_inter=%s\n", p);   printf("video_norm=%s\n",el.video_norm=='n'?"NTSC":"PAL");   printf("video_fps=%f\n",el.video_fps);   printf("video_sar_width=%i\n",el.video_sar_width);   printf("video_sar_height=%i\n",el.video_sar_height);   printf("max_frame_size=%li\n",el.max_frame_size);   switch (el.MJPG_chroma) {   case CHROMA420:     p = y4m_chroma_keyword(Y4M_CHROMA_420JPEG);     break;   case CHROMA422:     p = y4m_chroma_keyword(Y4M_CHROMA_422);     break;   case CHROMA444:     p = y4m_chroma_keyword(Y4M_CHROMA_444);     break;   default:     p = "***BOGUS/UNKNOWN*** chroma";     break;   }   printf("MJPG_chroma=%s\n", p);   /* Audio */   printf("has_audio=%i\n",el.has_audio);   printf("audio_bps=%i\n",el.audio_bps);   printf("audio_chans=%i\n",el.audio_chans);   printf("audio_bits=%i\n",el.audio_bits);   printf("audio_rate=%ld\n",el.audio_rate);   /* Misc */   printf("num_video_files=%li\n",el.num_video_files);   exit(0);}

⌨️ 快捷键说明

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