博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
FFMpeg音频重采样和视频格式转
阅读量:5239 次
发布时间:2019-06-14

本文共 1611 字,大约阅读时间需要 5 分钟。

一.视频像素和尺寸转换函数

  1.sws_getContext : 像素格式上下文  --------------->多副图像(多路视频)进行转换同时显示

  2.struct SwsContext  *sws_getCachedContext(struct SwsContext *context , int srcW , int srcH

            enum  AVPixelFormat srcFormat , int dstW , int dstH , enum AVPixelFormat

            dstFormat , int flags , SwsFilter *srcFilter , SwsFilter *dstFilter , const

            double  *param) ------------>一副图像(视频)进行转化用此接口

    flag :  是选择不同的算法---->针对与尺寸的变换

    param : 是和flag一同使用的

  3. sws_scale(struct SwsContext *c , const uint8_t *const srcSile[] , const int srcStride[] , int srcSliceY , int srcSliceH , uint8_t *const dst[] , const int dstStride[]) : 每一帧数据的转换

  4. sws_freeContext(struct SwsContext *swsContext) : 释放内存

二.音频重采样 

  1.SwrContext  *swr_alloc(void) : 创建上下文

  2.SwrContext  *swr_alloc_set_opts(struct SwrContext *s , int64_t out_ch_layout ,                                                             AVSampleFormat  out_sample_fmt , int out_sample_rate ,

         int64_t  in_ch_layout , AVSampleFormat  in_sample_fmt ,

         int  in_sample_rate , int  log_offset =0, void *log_ctx=0)  : 设置上下文

   out_ch_layout : 输出的layout(5.1声道或者是立体声道)

   out_sample_fmt : 输出的样本格式(16bit)

  3. int  swr_init(struct SwrContext  *s) : 初始化上下文

  4.void swr_free(struct SwrContext **s) : 释放空间

  5.swr_convert (struct SwrContext *s , uint8_t **out , int out_count ,

          const  uint8_t  **in  ,  int  in_count) : 一帧一帧去转换

   out_count : nb_sample------>单通道样本的数量

三.GLSurfaceView

  1.getHolder().getSurface() 

  2.SurfaceHolder.Callback

    (1).surfaceCreated() : surface的创建

    (2).surfaceChanged() : surface的改变

    (3).surfaceDestoryed : surface的销毁

  

  

  

转载于:https://www.cnblogs.com/liunx1109/p/9275641.html

你可能感兴趣的文章
【BZOJ4516】生成魔咒(后缀自动机)
查看>>
提高PHP性能的10条建议
查看>>
svn“Previous operation has not finished; run 'cleanup' if it was interrupted“报错的解决方法...
查看>>
熟用TableView
查看>>
Java大数——a^b + b^a
查看>>
poj 3164 最小树形图(朱刘算法)
查看>>
百度贴吧图片抓取工具
查看>>
服务器内存泄露 , 重启后恢复问题解决方案
查看>>
ajax post 传参
查看>>
2.1命令行和JSON的配置「深入浅出ASP.NET Core系列」
查看>>
android一些细节问题
查看>>
KDESVN中commit时出现containing working copy admin area is missing错误提示
查看>>
利用AOP写2PC框架(二)
查看>>
【动态规划】skiing
查看>>
java定时器的使用(Timer)
查看>>
Android实现静默安装与卸载
查看>>
ef codefirst VS里修改数据表结构后更新到数据库
查看>>
boost 同步定时器
查看>>
[ROS] Chinese MOOC || Chapter-4.4 Action
查看>>
简单的数据库操作
查看>>