IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> C++知识库 -> ffmpeg--拉流RTSP,解码后使用QT显示 -> 正文阅读

[C++知识库]ffmpeg--拉流RTSP,解码后使用QT显示

单独开线程拉流解码,用到的ffmpeg中的函数在代码中基本都有注释。

mdecode.h

#ifndef MDECODE_H
#define MDECODE_H

#include <QMainWindow>
#include <QDebug>
#include <QImage>
#include <QThread>
extern "C"
{
    #include <libavcodec/avcodec.h>
    #include <libavformat/avformat.h>
    #include <libswscale/swscale.h>
    #include <libavdevice/avdevice.h>
    #include <libavformat/version.h>
    #include <libavutil/time.h>
    #include <libavutil/mathematics.h>
}
class mdecode : public QThread
{
    Q_OBJECT

public:
    mdecode(QString url,AVPixelFormat pix_fmt,AVDictionary* options=nullptr);
    ~mdecode();
    void run();
private:
    AVFormatContext *pAVFormatContext=nullptr;
    AVCodecContext  *pAVCodecContext=nullptr;
    AVCodec         *pAVCodec=nullptr;
    AVPacket        *pAVpacket=nullptr;
    AVFrame         *pAVFrame=nullptr;
    AVFrame         *pAVFrameRgb=nullptr;
    struct SwsContext *pSwsContext=nullptr;
    AVPixelFormat   mpix_fmt;

    int videoIndex = -1;
    int numBytes =0;            // 解码后的数据长度
    uint8_t * outbuffer=nullptr;
    QString filename;
public :
    bool init_mdecode();
    void test_mdecode(QString out_dir);

signals:
    DrawImg(QImage img,QByteArray msg);

};

class mffmpg
{
public:
    mffmpg();
static void init_ffmpeg();
};
#endif // MDECODE_H

mdecode.cpp

#include "mdecode.h"

mdecode::mdecode(QString url,AVPixelFormat pix_fmt,AVDictionary* options)
{
    filename = url;
    mpix_fmt = pix_fmt;

}

bool mdecode::init_mdecode()
{
    int ret=0;
    pAVFormatContext = avformat_alloc_context();//分配全局上下文空间
    pAVpacket = av_packet_alloc();              //分配数据包空间
    pAVFrame  = av_frame_alloc();               //分配单帧空间
    pAVFrameRgb  = av_frame_alloc();           //分配rgb单帧空间
    if(!pAVFormatContext || !pAVpacket || !pAVFrame || !pAVFrameRgb)
    {
        qDebug()<< "init_mdecode failed";
        return false;
    }
    AVDictionary *optionsDict = NULL;
    av_dict_set(&optionsDict, "buffer_size", "1024000", 0); //设置缓存大小,1080p可将值调大
    av_dict_set(&optionsDict, "rtsp_transport", "tcp", 0); //以udp方式打开,如果以tcp方式打开将udp替换为tcp
    av_dict_set(&optionsDict, "stimeout", "20000000", 0); //设置超时断开连接时间,单位微秒
    av_dict_set(&optionsDict, "max_delay", "30000000", 0);

    ret = avformat_open_input(&pAVFormatContext, filename.toUtf8().data(), 0, 0);
    if(ret)
    {
        qDebug() << "Failed to avformat_open_input(&pAVFormatContext, filename.toUtf8().data(), 0, 0)";
        return false;
    }
    /*
     * 探测流媒体信息。
    */
    ret = avformat_find_stream_info(pAVFormatContext, 0);
    if(ret < 0)
    {
        qDebug() << "Failed to avformat_find_stream_info(pAVCodecContext, 0)";
        return false;
    }

    av_dump_format(pAVFormatContext, 0, filename.toUtf8().data(), 0);//打印文件中包含的格式信息

    for(int index = 0; index < pAVFormatContext->nb_streams; index++) //遍历寻找视频流
    {
        pAVCodecContext = pAVFormatContext->streams[index]->codec;
        if(pAVCodecContext->codec_type==AVMEDIA_TYPE_VIDEO)
        {
            videoIndex = index;//此处只找视频流,不找音频和其他
            break;
        }
    }
    if(videoIndex == -1 || !pAVCodecContext)
    {
        qDebug() << "Failed to find video stream";
        return false;
    }
    /*
        查找解码器并打开。
    */
    pAVCodec = avcodec_find_decoder(pAVCodecContext->codec_id);
    if(!pAVCodec)
    {
        qDebug() << "Fialed to avcodec_find_decoder(pAVCodecContext->codec_id):"<< pAVCodecContext->codec_id;
        return false;
    }
    QString url_type=filename.mid(0,4);

    if(url_type=="rtsp")
    {
        if(avcodec_open2(pAVCodecContext, pAVCodec, &optionsDict))
        {
            qDebug() <<"Failed to avcodec_open2(pAVCodecContext, pAVCodec, pAVDictionary)";
            return false;
        }
    }
    else
    {
        if(avcodec_open2(pAVCodecContext, pAVCodec, NULL))
        {
            qDebug() <<"Failed to avcodec_open2(pAVCodecContext, pAVCodec, pAVDictionary)";
            return false;
        }
    }
    qDebug()<<"video W x H:"<< pAVCodecContext->width << "x" << pAVCodecContext->height<<pAVCodecContext->pix_fmt;
    numBytes = avpicture_get_size(mpix_fmt,pAVCodecContext->width,pAVCodecContext->height);       //计算转换后的内存大小
    outbuffer=(uchar*)av_malloc(numBytes);//申请转换后图片存放的内存

    /*
     * int avpicture_fill(AVPicture *picture, const uint8_t *ptr, enum AVPixelFormat pix_fmt, int width, int height)
     * 上面的pAVFrameRgba只是malloc了一段结构体内存,结构体中的数据部分是没有分配的,使用此函数将pAVFrameRgba的data和outbuffer关联起来
     * pFrameRGB里面使用的是outbuffer所指向的内存空间.
     * 此函数在ffmpeg4.2后变为av_image_fill_arrays;
     * 我理解的是这个函数主要是给buffer添加pix_fmt width height linesize等属性.
     */
    avpicture_fill((AVPicture *)pAVFrameRgb,outbuffer,mpix_fmt,pAVCodecContext->width,pAVCodecContext->height);

    /*
     * sws_getContext函数
     * 相当于初始化转换函数,当后面使用sws_scale执行转换的时候不在写入格式等信息
    */
    pSwsContext = sws_getContext(pAVCodecContext->width,pAVCodecContext->height,pAVCodecContext->pix_fmt,//转换前的长、宽、像素格式
                                 pAVCodecContext->width,pAVCodecContext->height,mpix_fmt,         //转换后的长、宽、像素格式
                                 SWS_BICUBIC,                                                      //转换方法  libswscale/swscale.h
                                 0,0,0                                                                   //其他参数默认为空
                                 );
    return true;
}


void mdecode::test_mdecode(QString out_dir)
{
    int frameIndex=0;
    while(av_read_frame(pAVFormatContext,pAVpacket)>=0) //av_read_frame()读取一帧数据
    {
        if(pAVpacket->stream_index==videoIndex)
        {
            if(avcodec_send_packet(pAVCodecContext, pAVpacket)) //将数据包放入解码器
            {
                qDebug() << "Failed to avcodec_send_packet(pAVCodecContext, pAVPacket)";
                break;
            }
            while(!avcodec_receive_frame(pAVCodecContext, pAVFrame))//获取解码后的数据到AVFrame中,因为解码后的数据可能不止一包,所以使用while判断
            {
                sws_scale(pSwsContext,                              //上面使用sws_getContext得到的结构体
                          pAVFrame->data, //解码后的数据
                          pAVFrame->linesize,                      //每个通道的行字节数,linesize和width不同。
                          0,                                        //起始位置
                          pAVCodecContext->height,                         //处理行数
                          pAVFrameRgb->data,                       //目的buffer
                          pAVFrameRgb->linesize
                        );
                QImage image(  outbuffer,
                               pAVCodecContext->width,
                               pAVCodecContext->height,
                               pAVFrameRgb->linesize[0],
                               QImage::Format_RGBA8888);
                qDebug()<<"numbytes"<<numBytes<<image.size();
                image.save(out_dir+QString("%1.jpg").arg(frameIndex++));
            }
        }
        QThread::msleep(30);
        av_free_packet(pAVpacket);
    }
}

void mdecode::run()
{
    while(av_read_frame(pAVFormatContext,pAVpacket)>=0) //av_read_frame()读取一帧数据
    {
        if(pAVpacket->stream_index==videoIndex)
        {
            if(avcodec_send_packet(pAVCodecContext, pAVpacket)) //将数据包放入解码器
            {
                qDebug() << "Failed to avcodec_send_packet(pAVCodecContext, pAVPacket)";
                break;
            }
            while(!avcodec_receive_frame(pAVCodecContext, pAVFrame))//获取解码后的数据到AVFrame中,因为解码后的数据可能不止一包,所以使用while判断
            {
                sws_scale(pSwsContext,                              //上面使用sws_getContext得到的结构体
                          pAVFrame->data, //解码后的数据
                          pAVFrame->linesize,                      //每个通道的行字节数,linesize和width不同。
                          0,                                        //起始位置
                          pAVCodecContext->height,                         //处理行数
                          pAVFrameRgb->data,                       //目的buffer
                          pAVFrameRgb->linesize
                        );
                QImage image(  outbuffer,
                               pAVCodecContext->width,
                               pAVCodecContext->height,
                               pAVFrameRgb->linesize[0],
                               QImage::Format_RGBA8888);

                //emit DrawImg(img_queue.dequeue(),temp);  //实际项目中应该使用队列控制显示速度,temp是画框的位置,
                emit DrawImg(image,NULL);   //这里只解码显示。
            }
        }
        //QThread::msleep(30);
        av_free_packet(pAVpacket);
    }
}


mdecode::~mdecode()
{
    if(outbuffer) av_free(outbuffer);
    if(pSwsContext) sws_freeContext(pSwsContext);
    if(pAVFrameRgb) av_frame_free(&pAVFrameRgb);
    if(pAVFrame) av_frame_free(&pAVFrame);
    if(pAVpacket) av_packet_free(&pAVpacket);
    if(pAVCodecContext) avcodec_close(pAVCodecContext);
    if(pAVFormatContext) avformat_free_context(pAVFormatContext);
}

mffmpg::mffmpg()
{

}
void mffmpg::init_ffmpeg()
{
    av_register_all();
}

具体用法:mplayer.cpp

#include "mplayer.h"
#include "ui_mplayer.h"

mplayer::mplayer(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::mplayer)
{
    ui->setupUi(this);

    mffmpg::init_ffmpeg();
    avformat_network_init();
    edecode = new mdecode("rtsp://easen:xxxxxx@192.168.1.165",AV_PIX_FMT_RGB32);
    connect(edecode,&mdecode::DrawImg,this,Show_img,Qt::QueuedConnection);
    if(edecode->init_mdecode())
    {
        //edecode.test_mdecode("E:/avcode/video_out/3_decode_rtsp_h264/");
        edecode->start();
    }
    else
    {
        qDebug()<<"cant open edecode";
    }
}
void mplayer::Show_img(QImage image, QByteArray res)
{
    QImage mimage = image.scaled(ui->VideoLabel->width(),ui->VideoLabel->height());
    ui->VideoLabel->setScaledContents(true);
    ui->VideoLabel->setPixmap(QPixmap::fromImage(mimage));
}
mplayer::~mplayer()
{
    delete ui;
}

  C++知识库 最新文章
【C++】友元、嵌套类、异常、RTTI、类型转换
通讯录的思路与实现(C语言)
C++PrimerPlus 第七章 函数-C++的编程模块(
Problem C: 算法9-9~9-12:平衡二叉树的基本
MSVC C++ UTF-8编程
C++进阶 多态原理
简单string类c++实现
我的年度总结
【C语言】以深厚地基筑伟岸高楼-基础篇(六
c语言常见错误合集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-17 21:52:22  更:2022-03-17 21:52:40 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 2:54:39-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码