E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
AVFrame
ffmpeg入门之 Tutorial01
#include#include#include#includevoidSaveFrame(
AVFrame
*pFrame,intwidth,intheight,intiFrame){ FILE*pFile
mao0514
·
2013-08-22 17:00
ffmpeg入门之
Tutorial01
FFMpeg 中比较重要的函数以及数据结构
中比较重要的函数以及数据结构如下:1.数据结构:(1)AVFormatContext(2)AVOutputFormat(3)AVInputFormat(4)AVCodecContext(5)AVCodec(6)
AVFrame
missingu1314
·
2013-07-15 09:00
ffmpeg SDK开发手册
中比较重要的函数以及数据结构如下:1.数据结构:(1)AVFormatContext(2)AVOutputFormat(3)AVInputFormat(4)AVCodecContext(5)AVCodec(6)
AVFrame
nogodoss
·
2013-07-12 14:00
FFMPEG SDK开发手册
中比较重要的函数以及数据结构如下:1.数据结构:(1)AVFormatContext(2)AVOutputFormat(3)AVInputFormat(4)AVCodecContext(5)AVCodec(6)
AVFrame
yangzhiloveyou
·
2013-06-24 09:00
AVFrame
和AVPicture
源地址:http://yul100887.blog.163.com/blog/static/200336135201211143525930/struct
AVFrame
{uint8_t*data[4]
wujxiaoz
·
2013-06-15 18:00
视频
ffmpeg
RGB
yuv
sws_scale解出来的RGB图像颠倒问题
AVFrame
的data和linesize:YUV:linesize[0]= width+paddingsize(16+16),linesize[1]=linesize[0]/2 data
zxwangyun
·
2013-05-08 12:00
FFmepg 多线程解码历程 - 3: int ff_thread_decode_frame
avcodec_open2的时候,就会判断片还是帧解码,分析见下一篇intff_thread_decode_frame(AVCodecContext*avctx,
AVFrame
jwzhangjie
·
2013-03-30 14:00
FFmpeg多线程
FFmepg 多线程解码历程 - 2 :avcodec_decode_video2
//解码函数intattribute_align_argavcodec_decode_video2(AVCodecContext*avctx,
AVFrame
*picture,
jwzhangjie
·
2013-03-30 13:00
FFmpeg多线程
利用ffmpeg来进行视频解码(H.264)
佰锐科技提供的代码上修改而成,还参考了http://www.rosoo.net/a/201006/9659.htmlboolInitH264Codec(AVCodecContext*&av_codec_context,
AVFrame
chence19871
·
2013-03-09 16:00
FFMPEG解码264文件步骤
staticAVCodecContext*g_pCodecCtx=NULL;定义一个
AVFrame
,
AVFrame
描述一个多媒体帧。解码后的数
chence19871
·
2013-03-03 12:00
如何从
AVFrame
::data【0】里获取RGB24数据和YUYV422数据
structAVFrame{uint8_t*data[4];分别指向yuv三个位面及一个未知的位面或者是rgb模式下只有data[0]指向rawdataintlinesize[4];四个位面分别的内存块大小}
AVFrame
lnmcc
·
2013-02-26 14:00
用FFMPEG SDK进行视频转码压缩时解决音视频不同步问题的方法
经过研究发现,FFMPEGSDK写入视频的时候有两个地方用来控制写入的时间戳,一个是AvPacket,一个是
AvFrame
。在调用avcodec_encode_video
Creak_Phone
·
2013-02-21 23:00
ffmpeg 中
AVFrame
YUV
data是一个指向指针的指针(二级、二维指针),也就是指向视频数据缓冲区的首地址,而data[0]~data[3]是一级指针,可以用如下的图来表示:data-->xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ^ ^ ^ | |
tuan891205
·
2013-02-01 09:00
sws_scale解出来的RGB图像颠倒问题
sws_scale解出来的RGB图像颠倒问题转载自:http://blog.csdn.net/rightorwrong/article/details/6432042
AVFrame
* pFrame;
牵着老婆满街逛
·
2013-01-28 18:00
Save YUV to Disk
AVFrame
*
avFrame
;char*pName="/Users/mac/myfiles2/test_30.yuv";FILE*ff=fopen(pName,"wb");//????
shaoyizhe2006
·
2013-01-22 11:00
ffmpeg编解码H.264
3.2: 1:解码: 关于编码,x264就可以了(当然有空的话,会继续写一点关于ffmpeg编码的东西); 2:解码: 解码主要参考了apiexample.c,下面我列出一个函数将解码后的
AVFrame
gyley2
·
2013-01-06 14:00
ffmpeg
h.264
编解码
视音频封装
FFMpeg 中重要的函数以及数据结构
中比较重要的函数以及数据结构如下:1.数据结构:(1)AVFormatContext(2)AVOutputFormat(3)AVInputFormat(4)AVCodecContext(5)AVCodec(6)
AVFrame
ymsdu2004
·
2012-12-29 19:00
ffmpeg编程(一)
这篇主要讲如何以路径的方式打开一个视频intmain(){ AVFormatContext*pFormatCtx; inti,videoStream; AVCodecContext*pCodecCtx; AVCodec*pCodec;
AVFrame
chang6520
·
2012-12-28 16:00
How to get
AVFrame
(ffmpeg) from NSImage/UIImage
http://stackoverflow.com/questions/3119963/how-to-get-avframeffmpeg-from-nsimage-uiimageAVFrame*frame=avcodec_alloc_frame(); intnumBytes=avpicture_get_size(PIX_FMT_YUV420P,outputWidth,outputHeight); u
leonpengweicn
·
2012-12-28 12:00
ffmpeg 解码h264
3.2: 1:编码: 关于编码,x264就可以了(当然有空的话,会继续写一点关于ffmpeg编码的东西); 2:解码: 解码主要参考了apiexample.c,下面我列出一个函数将解码后的
AVFrame
wesleyluo
·
2012-10-10 13:00
video
null
delete
buffer
byte
Codec
How to Convert
AVFrame
from NSImage or UIImage
AVFrame
*frame=avcodec_alloc_frame(); intnumBytes=avpicture_get_size(PIX_FMT_YUV420P,outputWidth,outputHeight
leonpengweicn
·
2012-09-05 12:00
ffmpeg教程六——源码分析之数据结构
数据结构AVFormatContext、AVInputFormat、AVOutputFormat、AVIOContext、AVStream、AVCodecContext、AVCodec、AVPacket、
AVFrame
kl222
·
2012-08-09 15:00
数据结构
how to convert
AVFrame
to texture used by glTexImage2D?
转自: http://stackoverflow.com/questions/5548674/how-to-convert-
avframe
-to-texture-used-by-glteximage2d0downvotefavoriteasyouknowthatAVFramehas2property
leonpengweicn
·
2012-08-06 18:00
android
function
user
video
null
byte
如何强制ffmpeg编码时输出一个关键帧
如何强制ffmpeg编码时输出一个关键帧如何强制ffmpeg编码时输出一个关键帧AVCodecContext*c//编码器环境句柄
AVFrame
*f//需要编码的一帧视频 /*在avcodec.h文件中有这样的定义
rao_warrior
·
2012-08-04 09:00
c
video
BI
调通了ffmpeg tutorial例程
include-lavcodec-lavformat-lswscale-lavutil#include #include #include #include #include staticvoidSaveFrame(
AVFrame
chennxi
·
2012-08-02 16:00
yuv420P数据对
AVFrame
的赋值
AVFrame
*pict=newAVFrame; FILE*fyuv=fopen("G:\\352x288.yuv","rb"); intnfilelen=(width*height*3)/2
chinabinlang
·
2012-07-31 10:00
File
byte
ffmpeg Turorial01 在新sdk下的修改
AVFormatContext*pFormatCtx; int i,videoStream; AVCodecContext *pCodecCtx; AVCodec *pCodec;
AVFrame
chinabinlang
·
2012-07-26 14:00
Stream
video
File
null
buffer
Codec
FFmpeg浅尝辄止(三)——小试视频解码
char*argv[]) { AVFormatContext*pFormatCtx; inti,videoStream; AVCodecContext*pCodecCtx; AVCodec*pCodec;
AVFrame
yang_xian521
·
2012-06-28 15:00
Stream
video
File
null
buffer
Codec
用FFMPEG SDK进行视频转码压缩时解决音视频不同步问题的方法(转) PTS DTS
经过研究发现,FFMPEGSDK写入视频的时候有两个地方用来控制写入的时间戳,一个是AvPacket,一个是
AvFrame
。在调用avcodec_encode_video的时候
cosmoslife
·
2012-06-11 20:00
c
image
video
filter
File
flv
用FFMPEG SDK进行视频转码压缩时解决音视频不同步问题的方法(转) PTS DTS
经过研究发现,FFMPEGSDK写入视频的时候有两个地方用来控制写入的时间戳,一个是AvPacket,一个是
AvFrame
。在调用avcodec_encode_video的时候需要传入AvFr
cosmoslife
·
2012-06-08 23:49
FFMpeg学习
如何从
AVFrame
::data【0】里获取RGB24数据和YUYV422数据
如何从
AVFrame
::data[0]里获取RGB24数据,又如何从中获取YUYV422数据提出问题:我用img_convert转换了解码后的图象为RGB24,确保转换是正确的,取出数据来播放还是不正常
cffishappy
·
2012-05-22 21:00
FFMpeg 中比较重要的函数以及数据结构
中比较重要的函数以及数据结构如下:1.数据结构:(1)AVFormatContext(2)AVOutputFormat(3)AVInputFormat(4)AVCodecContext(5)AVCodec(6)
AVFrame
allen_young_yang
·
2012-02-01 13:00
数据结构
Stream
video
Parameters
output
Codec
FFMPEG解码264文件步骤
staticAVCodecContext*g_pCodecCtx=NULL;定义一个
AVFrame
,
AVFrame
描述一个多媒体帧。解码后的
maopig
·
2011-11-15 14:00
video
null
byte
任务
Codec
在 FFmpeg-full-SDK-3.2下 Tutorial01 修改如下
AVFormatContext*pFormatCtx; int i,videoStream; AVCodecContext *pCodecCtx; AVCodec *pCodec;
AVFrame
chinabinlang
·
2011-10-31 11:00
Stream
video
File
null
buffer
Codec
用FFMPEG SDK进行视频转码压缩时解决音视频不同步问题的方法(转) PTS DTS
经过研究发现,FFMPEGSDK写入视频的时候有两个地方用来控制写入的时间戳,一个是AvPacket,一个是
AvFrame
。在调用avcodec_encode_video的时候
maopig
·
2011-09-10 16:00
c
image
filter
video
File
flv
sws_scale
SwsContext*encoderSwsContext;
AVFrame
*encoderRawFrame;
AVFrame
*encoderRescaledFrame; //initandfilltheencoderRawFramewithyourimagedata
maopig
·
2011-08-03 23:00
编程
struct
image
null
DST
2010
基于ffmpeg解码h264视频
staticAVCodecContext*g_pCodecCtx=NULL;定义一个
AVFrame
,
AVFrame
描述一个多媒体帧。解码后的数
coloriy
·
2011-08-01 10:00
video
null
byte
任务
Codec
FFMPEG SDK开发手册
中比较重要的函数以及数据结构如下:1.数据结构:(1)AVFormatContext(2)AVOutputFormat(3)AVInputFormat(4)AVCodecContext(5)AVCodec(6)
AVFrame
menguio
·
2011-05-06 12:00
数据结构
Stream
video
Parameters
output
Codec
FFMpeg 编程手册
中比较重要的函数以及数据结构如下:1.数据结构:(1)AVFormatContext(2)AVOutputFormat(3)AVInputFormat(4)AVCodecContext(5)AVCodec(6)
AVFrame
wwdlk
·
2011-05-06 10:00
数据结构
编程
Stream
video
output
Codec
使用FFMPEG SDK解码流数据获得YUV数据及其大小
staticAVCodecContext*g_pCodecCtx=NULL;定义一个
AVFrame
,
AVFrame
描述一个多媒体帧。解码后的数
xingyu19871124
·
2011-04-02 09:00
video
null
byte
任务
Codec
【zz】FFMpeg SDK 开发手册
: (1) AVFormatContext (2) AVOutputFormat (3) AVInputFormat (4) AVCodecContext (5) AVCodec (6)
AVFrame
commshare
·
2011-03-15 00:00
Use FFMPEG and SDL to show a frame of YUV (4:2:0)
defineHEIGHT288intmain(){ av_register_all(); FILE*fin=fopen("test.yuv","rb"); uint8_t*buffer_in;
AVFrame
yanghangjun
·
2010-11-08 22:00
File
gcc
buffer
FFPLAY的原理(二)
voidSaveFrame(
AVFrame
*pFrame,intwidth,intheig
szu030606
·
2010-10-13 15:00
FFPLAY的原理(二)
voidSaveFrame(
AVFrame
*pFrame,intwidth,intheig
szu030606
·
2010-10-13 15:00
iframe
image
video
gcc
平台
图像处理
FFPLAY的原理(二)
void SaveFrame(
AVFrame
*pFrame, int width, in
mmdev
·
2010-10-13 15:00
play
FFPLAY的原理(二)
void SaveFrame(
AVFrame
*pFrame, int width, in
mmdev
·
2010-10-13 15:00
play
使用FFMPEG SDK解码流数据获得YUV数据及其大小
staticAVCodecContext*g_pCodecCtx=NULL;定义一个
AVFrame
,
AVFrame
描述一个多媒体帧。解码后的数
mmdev
·
2010-10-12 18:00
ffmpeg
FFMpeg SDK 开发手册
中比较重要的函数以及数据结构如下:1.数据结构:(1)AVFormatContext(2)AVOutputFormat(3)AVInputFormat(4)AVCodecContext(5)AVCodec(6)
AVFrame
cpp_lzth
·
2010-09-21 15:00
数据结构
Stream
video
Parameters
output
Codec
FFMpeg 中比较重要的函数以及数据结构
中比较重要的函数以及数据结构如下:1.数据结构:(1)AVFormatContext(2)AVOutputFormat(3)AVInputFormat(4)AVCodecContext(5)AVCodec(6)
AVFrame
wxzking
·
2010-07-19 16:00
数据结构
Stream
video
Parameters
output
Codec
FFMpeg 中比较重要的函数以及数据结构
中比较重要的函数以及数据结构如下:1.数据结构:(1)AVFormatContext(2)AVOutputFormat(3)AVInputFormat(4)AVCodecContext(5)AVCodec(6)
AVFrame
linweig
·
2010-05-13 10:00
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他