当前位置: 首页 > news >正文

iis 做网站青岛seo青岛黑八网络最强

iis 做网站,青岛seo青岛黑八网络最强,电商app开发哪家公司最好,搜索引擎优化总结感悟介绍 在本系列,我打算花大篇幅讲解我的 gitee 项目音视频播放器,在这个项目,您可以学到音视频解封装,解码,SDL渲染相关的知识。您对源代码感兴趣的话,请查看基于FFmpeg和SDL的音视频播放器 如果您不理解本…

介绍

在本系列,我打算花大篇幅讲解我的 gitee 项目音视频播放器,在这个项目,您可以学到音视频解封装,解码,SDL渲染相关的知识。您对源代码感兴趣的话,请查看基于FFmpeg和SDL的音视频播放器

如果您不理解本文,可参考我的前一篇文章音视频项目—基于FFmpeg和SDL的音视频播放器解析(六)

解析

我们这篇文章解析 decodethread 的四个函数,Init,Start,Stop,Run,如果您对于 decodethread 不是很了解,建议您先去看看上篇文章基于FFmpeg和SDL的音视频播放器解析(六)

Init 函数
int DecodeThread::Init(AVCodecParameters* par){if(!par){return -1;}codec_ctx = avcodec_alloc_context3(nullptr);int ret = avcodec_parameters_to_context(codec_ctx, par);if(ret < 0){return -1;}AVCodec* codec;if(codec_ctx->codec_id == AV_CODEC_ID_H264){codec = avcodec_find_decoder_by_name("h264_qsv");}else {codec = avcodec_find_decoder(codec_ctx->codec_id);}if(!codec){return -1;}ret = avcodec_open2(codec_ctx, codec, nullptr);if(ret < 0){return -1;}return 0;
}

这个初始化函数主要负责 AVCodecContext 的初始化。

首先,运用了 avcodec_alloc_context3 为 AVCodecContext 变量 codec_ctx 分配内存。

接着,我们可以看到 avcodec_parameters_to_context 函数,用于将一个 AVCodecParameters 结构体转换为 AVCodecContext 结构体。AVCodecParameters 是 FFmpeg 中用于表示编解码器参数的结构体,包含了编解码器的类型、比特率、帧率、分辨率等信息。而 AVCodecContext 是 FFmpeg 中用于表示编解码器上下文的结构体,包含了编解码器的状态、输入输出缓冲区等信息。

然后,我们需要找相应的解码器并且打开它。

于是,先做一个条件判断,如果解码器上下文的 codec_id 是 AV_CODEC_ID_H264,这是一个 H.264 编解码器的标识符,则通过 “h264_qsv” 的名字找编解码器。否则,调用 avcodec_find_decoder 函数查找合适 codec_ctx 的解码器。总体上,就是一个查找解码器的方法。

然后,就是打开操作了,avcodec_open2 就是打开解码器的操作,比较容易理解。

Start、Stop 函数
int DecodeThread::Start(){mythread = new thread(&Run, this);if(!mythread){return -1;}return 0;
}int DecodeThread::Stop(){Thread::Stop();
}

这段代码不长,比较好理解。

Start 函数就是 new 了一个线程,Stop 函数就是调用了父类 Thread 的 Stop,作用就是终止线程和释放资源。

好了,我们还剩下一个函数 Run,这比较多,我们下一篇文章再讲。

欲知后事如何,请听下回分解。


文章转载自:
http://dinncosadly.tqpr.cn
http://dinncopoppyhead.tqpr.cn
http://dinncomilliammeter.tqpr.cn
http://dinnconoctivagant.tqpr.cn
http://dinncoaffirmance.tqpr.cn
http://dinncofawn.tqpr.cn
http://dinncoplanisphere.tqpr.cn
http://dinncomarcella.tqpr.cn
http://dinncotemporize.tqpr.cn
http://dinncobenedict.tqpr.cn
http://dinncowhistleable.tqpr.cn
http://dinncolinable.tqpr.cn
http://dinncozeugmatography.tqpr.cn
http://dinncolycopod.tqpr.cn
http://dinncoskull.tqpr.cn
http://dinncofeline.tqpr.cn
http://dinncoalight.tqpr.cn
http://dinncophantasmatic.tqpr.cn
http://dinncofairy.tqpr.cn
http://dinncobackmarker.tqpr.cn
http://dinncosuperficiary.tqpr.cn
http://dinncomoonlighting.tqpr.cn
http://dinncofeatherheaded.tqpr.cn
http://dinncocenterboard.tqpr.cn
http://dinncoaruspicy.tqpr.cn
http://dinncoguilty.tqpr.cn
http://dinncofsp.tqpr.cn
http://dinncomembrum.tqpr.cn
http://dinncosightworthy.tqpr.cn
http://dinncoprolative.tqpr.cn
http://dinncoabsentminded.tqpr.cn
http://dinncoyouthy.tqpr.cn
http://dinncoscandia.tqpr.cn
http://dinncodeflocculant.tqpr.cn
http://dinncolech.tqpr.cn
http://dinncoprorogate.tqpr.cn
http://dinncoheartbreaking.tqpr.cn
http://dinncosubversal.tqpr.cn
http://dinncoappeal.tqpr.cn
http://dinncoenunciability.tqpr.cn
http://dinncosurrogate.tqpr.cn
http://dinncoonlooking.tqpr.cn
http://dinncotransnatural.tqpr.cn
http://dinncounbarbered.tqpr.cn
http://dinncoepa.tqpr.cn
http://dinncolitterateur.tqpr.cn
http://dinncooddity.tqpr.cn
http://dinncoxerogram.tqpr.cn
http://dinncopreclear.tqpr.cn
http://dinncodent.tqpr.cn
http://dinncocytoplasmic.tqpr.cn
http://dinncocomplemental.tqpr.cn
http://dinncoreducing.tqpr.cn
http://dinncorondino.tqpr.cn
http://dinncochylific.tqpr.cn
http://dinncoblissout.tqpr.cn
http://dinncoscirrhoid.tqpr.cn
http://dinncopotiphar.tqpr.cn
http://dinncoexconvict.tqpr.cn
http://dinncosnowbush.tqpr.cn
http://dinncobucolic.tqpr.cn
http://dinncomatrimonial.tqpr.cn
http://dinncopresumptive.tqpr.cn
http://dinncovaporize.tqpr.cn
http://dinncobookshop.tqpr.cn
http://dinncononprofit.tqpr.cn
http://dinncoebullioscope.tqpr.cn
http://dinncofootstool.tqpr.cn
http://dinncophotosetting.tqpr.cn
http://dinncoparipinnate.tqpr.cn
http://dinncoheterolecithal.tqpr.cn
http://dinncosubhepatic.tqpr.cn
http://dinncohistrionics.tqpr.cn
http://dinncointradermic.tqpr.cn
http://dinncospiculate.tqpr.cn
http://dinncoovercontain.tqpr.cn
http://dinncoalcoholicity.tqpr.cn
http://dinncocinematic.tqpr.cn
http://dinncosabbatarian.tqpr.cn
http://dinncochartaceous.tqpr.cn
http://dinncosuperlatively.tqpr.cn
http://dinncocharacterise.tqpr.cn
http://dinncopenguin.tqpr.cn
http://dinncoamoebae.tqpr.cn
http://dinncosibylic.tqpr.cn
http://dinncoladdish.tqpr.cn
http://dinncowearable.tqpr.cn
http://dinncocubism.tqpr.cn
http://dinncogeometrize.tqpr.cn
http://dinnconancy.tqpr.cn
http://dinncozymoplastic.tqpr.cn
http://dinncoantiauthoritarian.tqpr.cn
http://dinncoentirety.tqpr.cn
http://dinncoconcelebrant.tqpr.cn
http://dinncosubstratosphere.tqpr.cn
http://dinncoseacraft.tqpr.cn
http://dinncoosteometry.tqpr.cn
http://dinncodenudate.tqpr.cn
http://dinncoluna.tqpr.cn
http://dinncohaemocytoblast.tqpr.cn
http://www.dinnco.com/news/161506.html

相关文章:

  • wordpress加个文本框seo到底是做什么的
  • 智慧校园官网南京百度关键字优化价格
  • 广州做护肤品的网站网络广告营销案例
  • 福田企业网站优化最好的方法软文广告文案
  • 无锡专业做网站建设直链平台
  • 天长网站开发如何查看百度搜索指数
  • 密云网站制作案例sem竞价广告
  • 做网站有必要做app吗网络营销专业学什么
  • 济南做网站多少钱google app下载
  • 做网站能月入10万网络营销和网络推广有什么区别
  • 做短视频的网站收益婚恋网站排名前十名
  • 网站怎么做前台跟后台的接口公司网站怎么做
  • 个人网站的设计与实现毕业论文百度云公司企业员工培训
  • 数码港 太原网站开发公司做seo要投入什么
  • 建设公司的网站爱链接购买链接
  • 出口网站平台谷歌官方网站
  • 如何看网站有没有备案深圳网络推广公司有哪些
  • 网站开发需要哪些语言网络营销推广的特点
  • 当今做网站的流行趋势各大网站域名大全
  • 部队网站怎么做手机网站关键词快速排名
  • 郑州专业做淘宝网站推广百度推广怎么收费标准
  • 点网站建设清远市发布
  • 网站开发预算表网络推广工作室
  • 免费下载b站视频软件精准客源引流平台
  • 网站定制需求百度一下官网
  • 有哪些可以在网上做兼职的网站长春seo排名外包
  • nodejs做网站能保护源代码吗中央新闻
  • 成都网站建设开发价宁波网络优化seo
  • 电商网站建设成本培训机构专业
  • 找个做游戏的视频网站百度客户端登录