爱技术爱生活
这个作者很懒,什么都没留下…
展开
-
一款基于ffplay的视频播放器
可以运行在vs2015/vs2017上,根据需要(vs2015/vs2017)调整属性=》常规中的平台参数集。 github地址: git@github.com:tong123/ffplay-demo.git原创 2018-08-16 10:16:36 · 4552 阅读 · 1 评论 -
播放器系列之ffplay源码分析(一)
最近在分析ffmpeg4.0中的播放器源码ffplay.c,这里将一些心得体会记录下来。 ffplay是一个独立文件,下面是入口函数: int main(int argc, char **argv) { int flags; VideoState *is; init_dynload(); av_log_set_flags(AV_LOG_SKIP_REPEAT...原创 2018-08-08 17:29:53 · 4108 阅读 · 6 评论 -
播放器系列之ffplay源码分析(二)
下面开始了打开媒体流的操作 1、read_thread()里打开video、audio、subtitle流 /* this thread gets the stream from the disk or the network */ static int read_thread(void *arg) { VideoState *is = arg; AVFormatContext...原创 2018-08-08 17:47:08 · 1191 阅读 · 1 评论 -
播放器系列之ffplay源码分析(三)
这里开始调用解码线程audio_thread()、video_thread()、subtitle_thread() /* open a given stream. Return 0 if OK */ static int stream_component_open(VideoState *is, int stream_index) { AVFormatContext *ic = is-&...原创 2018-08-08 18:10:17 · 670 阅读 · 0 评论 -
播放器系列之ffplay源码分析(四)
1、开始解码的线程 static int decoder_start(Decoder *d, int (*fn)(void *), void *arg) { packet_queue_start(d->queue); d->decoder_tid = SDL_CreateThread(fn, "decoder", arg); if (!d->decode...原创 2018-08-09 14:39:24 · 450 阅读 · 0 评论 -
播放器系列之ffplay源码分析(五)
1、配置filtergraph static int configure_filtergraph(AVFilterGraph *graph, const char *filtergraph, AVFilterContext *source_ctx, AVFilterContext *sink_ctx) { int ret,...原创 2018-08-09 16:52:33 · 475 阅读 · 0 评论 -
播放器系列之ffplay源码分析(六)
1、ffplay包含的头文件 #include "config.h" #include <inttypes.h> #include <math.h> #include <limits.h> #include <signal.h> #include <stdint.h&am原创 2018-08-09 17:26:14 · 430 阅读 · 0 评论 -
播放器系列之ffplay源码分析(七)
1、解码结构体初始化 static void decoder_init(Decoder *d, AVCodecContext *avctx, PacketQueue *queue, SDL_cond *empty_queue_cond) { memset(d, 0, sizeof(Decoder)); d->avctx = avctx; d->queue = ...原创 2018-08-09 17:59:56 · 582 阅读 · 0 评论 -
播放器系列之ffplay源码分析(八)
包队列的使用: 1、将包放入队列的详细过程 static int packet_queue_put_private(PacketQueue *q, AVPacket *pkt) { MyAVPacketList *pkt1; if (q->abort_request) return -1; pkt1 = av_malloc(sizeof(My...原创 2018-08-10 09:13:59 · 756 阅读 · 1 评论 -
播放器系列之ffplay源码分析(九)
1、清理参考帧 static void frame_queue_unref_item(Frame *vp) { av_frame_unref(vp->frame); avsubtitle_free(&vp->sub); } 2、帧队列初始化 static int frame_queue_init(FrameQueue *f, PacketQ原创 2018-08-10 09:49:41 · 642 阅读 · 2 评论