资源简介
vs2012调试ffmpeg.c
自己做修改,请参考我的博文:http://blog.csdn.net/zengraoli/article/details/37592153
改动比较多,花了大概一个晚上解决的问题,所以收取的下载分比较高,请尽量自己动手修改!
代码片段和文件信息
/*
* Various utilities for command line tools
* Copyright (c) 2000-2003 Fabrice Bellard
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License or (at your option) any later version.
*
* FFmpeg 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not write to the Free Software
* Foundation Inc. 51 Franklin Street Fifth Floor Boston MA 02110-1301 USA
*/
#include
#include
#include
#include
#include
/* Include only the enabled headers since some compilers (namely Sun
Studio) will not omit unused inline functions and create undefined
references to libraries that are not being built. */
#include “config.h“
#include “va_copy.h“
#include “libavformat/avformat.h“
#include “libavfilter/avfilter.h“
#include “libavdevice/avdevice.h“
#include “libavresample/avresample.h“
#include “libswscale/swscale.h“
#include “libswresample/swresample.h“
#include “libpostproc/postprocess.h“
#include “libavutil/avassert.h“
#include “libavutil/avstring.h“
#include “libavutil/bprint.h“
#include “libavutil/mathematics.h“
#include “libavutil/imgutils.h“
#include “libavutil/parseutils.h“
#include “libavutil/pixdesc.h“
#include “libavutil/eval.h“
#include “libavutil/dict.h“
#include “libavutil/opt.h“
#include “libavutil/cpu.h“
#include “libavutil/ffversion.h“
#include “cmdutils.h“
#if CONFIG_NETWORK
#include “libavformat/network.h“
#endif
#if HAVE_SYS_RESOURCE_H
#include
#include
#endif
static int init_report(const char *env);
struct SwsContext *sws_opts;
AVDictionary *swr_opts;
AVDictionary *format_opts *codec_opts *resample_opts;
static FILE *report_file;
int hide_banner = 0;
void init_opts(void)
{
if(CONFIG_SWSCALE)
sws_opts = sws_getContext(16 16 0 16 16 0 SWS_BICUBIC
NULL NULL NULL);
}
void uninit_opts(void)
{
#if CONFIG_SWSCALE
sws_freeContext(sws_opts);
sws_opts = NULL;
#endif
av_dict_free(&swr_opts);
av_dict_free(&format_opts);
av_dict_free(&codec_opts);
av_dict_free(&resample_opts);
}
void log_callback_help(void *ptr int level const char *fmt va_list vl)
{
vfprintf(stdout fmt vl);
}
static void log_callback_report(void *ptr int level const char *fmt va_list vl)
{
va_list vl2;
char line[1024];
static int print_prefix = 1;
va_copy(vl2 vl);
av_log_default_callback(ptr level fmt vl);
av_log_format_line(ptr level fmt vl2 line sizeof(line) &print_prefix);
va_end(v
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 8180750 2014-07-07 11:03 ffmpeg_debug\Debug\avcodec-55.dll
文件 26126 2014-07-07 11:03 ffmpeg_debug\Debug\avdevice-55.dll
文件 913422 2014-07-07 11:03 ffmpeg_debug\Debug\avfilter-4.dll
文件 1712142 2014-07-07 11:03 ffmpeg_debug\Debug\avformat-55.dll
文件 335886 2014-07-07 11:03 ffmpeg_debug\Debug\avutil-52.dll
文件 120846 2014-07-07 11:03 ffmpeg_debug\Debug\postproc-52.dll
文件 104462 2014-07-07 11:03 ffmpeg_debug\Debug\swresample-0.dll
文件 435214 2014-07-07 11:03 ffmpeg_debug\Debug\swscale-2.dll
文件 984233 2014-07-09 09:08 ffmpeg_debug\ffmpeg_debug\a.gif
文件 220118 2014-07-07 11:03 ffmpeg_debug\ffmpeg_debug\avcodec.lib
文件 7834 2014-07-07 11:03 ffmpeg_debug\ffmpeg_debug\avdevice.lib
文件 66874 2014-07-07 11:03 ffmpeg_debug\ffmpeg_debug\avfilter.lib
文件 122770 2014-07-07 11:03 ffmpeg_debug\ffmpeg_debug\avformat.lib
文件 318868 2014-07-07 11:03 ffmpeg_debug\ffmpeg_debug\avutil.lib
文件 64641 2014-07-08 20:18 ffmpeg_debug\ffmpeg_debug\cmdutils.c
文件 18635 2014-07-08 20:19 ffmpeg_debug\ffmpeg_debug\cmdutils.h
文件 2358 2014-07-08 20:13 ffmpeg_debug\ffmpeg_debug\cmdutils_common_opts.h
文件 52057 2014-07-08 17:21 ffmpeg_debug\ffmpeg_debug\config.h
文件 137888 2014-07-08 20:23 ffmpeg_debug\ffmpeg_debug\ffmpeg.c
文件 15034 2014-06-23 22:19 ffmpeg_debug\ffmpeg_debug\ffmpeg.h
文件 4605 2014-07-08 20:14 ffmpeg_debug\ffmpeg_debug\ffmpeg_debug.vcxproj
文件 1773 2014-07-08 20:14 ffmpeg_debug\ffmpeg_debug\ffmpeg_debug.vcxproj.filters
文件 409 2014-07-09 09:08 ffmpeg_debug\ffmpeg_debug\ffmpeg_debug.vcxproj.user
文件 37418 2014-07-08 20:33 ffmpeg_debug\ffmpeg_debug\ffmpeg_filter.c
文件 119342 2014-07-08 20:33 ffmpeg_debug\ffmpeg_debug\ffmpeg_opt.c
文件 176682 2014-07-07 11:04 ffmpeg_debug\ffmpeg_debug\include\libavcodec\avcodec.h
文件 3111 2014-07-07 11:04 ffmpeg_debug\ffmpeg_debug\include\libavcodec\avfft.h
文件 2270 2014-07-07 11:04 ffmpeg_debug\ffmpeg_debug\include\libavcodec\dxva2.h
文件 10654 2014-07-07 11:04 ffmpeg_debug\ffmpeg_debug\include\libavcodec\old_codec_ids.h
文件 4007 2014-07-07 11:04 ffmpeg_debug\ffmpeg_debug\include\libavcodec\vaapi.h
............此处省略147个文件信息
- 上一篇:仿淘宝收货地址
- 下一篇:计算广告含有目录 刘鹏版
相关资源
- WINDOWS7设备驱动程序开发_12867221_美里
- phantomjs的2.1.1版windows
- Rootkits--Windows内核的安全防护.pdf
-
Macgo Windows Blu-ray Pla
yer 2.11中文注册 - Rootkits_Windows内核的安全防护 电子书及
- Windows Server 2012 R2 Active Directory配置指
- VNC-5.1.0-Windows 破解版
- ffmpeg_windows屏幕录制并编码成H264
- windows32位系统的ffmpeg
- nmap-5.00(windows环境)
- 佳能相机开发EDSDK_13.10.21_for_Windows.z
- 《Excel实战技巧精粹》文件 光盘文件
- Windows10_adb_1.0.39.zip
- Windows内核原理与实现 微软对高校提供
- Windows游戏编程大师技巧(第二版)光
- windows API 开发详解光盘(全)
- Windows程序设计 中英中文是完美版本
- PVR 预览工具windows 下查看PVR
- windows 串口工具
- WindowsServer2003-KB914961-SP2-x86-CHSIE6升级
- Winhlp32 的 Windows 10 / Windows 8 解决方案
- 纯dos622操作系统下的光驱驱动程序,
- log4cxx Windows vs已配置好的工程
- Windows10下的winhlp32解決方案
- 固态硬盘安全擦除Windows版本secure er
- 桌面右键菜单新建.md文件
- windows xp Media Center 主题包 微软原版
- Windows Server 2016 部署FTP服务器
- PC Logo for Windows - v1.01a
- Source Navigator(Windows版)
评论
共有 条评论