结合ffmpeg用SDL播放YUV实现简易播放器

通过解码之后得到的yuv视频数据我们直接可以进行播放,本篇使用SDL来实现视频播放。

SDL环境配置:https://blog.csdn.net/furzoom/article/details/53992124

SDL视频播放基础教程: https://blog.csdn.net/xuyankuanrong/article/details/77574152

有了上一篇文章的解码的基础,代码看着就很轻松了。

代码上写的很详细了,具体看代码



#include "stdafx.h"
#include <iostream>

// LNK2019  无法解析的外部符号 SDL_main,该符号在函数 main_utf8 中被引用
#define SDL_MAIN_HANDLED 

//Refresh Event
#define SFM_REFRESH_EVENT     (SDL_USEREVENT + 1)
#define SFM_BREAK_EVENT       (SDL_USEREVENT + 2)

extern "C" {
    #include <libavformat/avformat.h>   
    #include <libavcodec/avcodec.h>   
    #include <libavutil/imgutils.h>
    #include <libswscale/swscale.h>
    #include <libsdl/SDL.h>
}



void log_s(const char * msg, int d = -1123) {
    if (d == -1123) {
        printf_s("%s\n", msg);
    }
    else {
        printf_s("%s  %d \n", msg, d);
    }
}


int thread_exit = 0;
int thread_pause = 0;

int sfp_refresh_thread(void *opaque) {
    while (!thread_exit) {
        if (!thread_pause) {
            SDL_Event event;
            event.type = SFM_REFRESH_EVENT;
            SDL_PushEvent(&event);
        }
        SDL_Delay(10);
    }
    thread_exit = 0;
    thread_pause = 0;
    //Break
    SDL_Event event;
    event.type = SFM_BREAK_EVENT;
    SDL_PushEvent(&event);

    return 0;
}

int play(const char*  filePath) {
    AVFormatContext * pFmtCtx = NULL;
    AVCodecContext *pCodecCtx = NULL;
    AVFrame *pFrame = NULL;
    AVFrame *pFrameYUV = NULL;
    uint8_t *outBuffer = NULL;
    AVPacket *pPacket = NULL;
    SwsContext *pSwsCtx = NULL;

    //SDL
    int screen_w, screen_h;
    SDL_Window *screen=NULL;
    SDL_Renderer* sdlRenderer = NULL;
    SDL_Texture* sdlTexture = NULL;
    SDL_Rect sdlRect;
    SDL_Thread *video_tid = NULL;
    SDL_Event event;


    //1. 初始化
    av_register_all();
    avformat_network_init();
    //2. AVFormatContext获取
    pFmtCtx = avformat_alloc_context();
    //3. 打开文件
    if (avformat_open_input(&pFmtCtx, filePath, NULL, NULL) != 0) {
        log_s("Couldn't open input stream.\n");
        return -1;
    }
    //4. 获取文件信息
    if (avformat_find_stream_info(pFmtCtx, NULL)<0) {
        log_s("Couldn't find stream information.");
        return -1;
    }
    //5. 获取视频的index
    int i = 0, videoIndex = -1;
    for (; i < pFmtCtx->nb_streams; i++) {
        if (pFmtCtx->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
            videoIndex = i;
            break;
        }
    }

    if (videoIndex == -1) {
        log_s("Didn't find a video stream.");
        return -1;
    }
    //6. 获取解码器并打开
    pCodecCtx = avcodec_alloc_context3(NULL);
    if (avcodec_parameters_to_context(pCodecCtx, pFmtCtx->streams[videoIndex]->codecpar) < 0) {
        log_s("Didn't parameters to contex.");
        return -1;
    }
    AVCodec *pCodec = avcodec_find_decoder(pCodecCtx->codec_id);
    if (pCodec == NULL) {
        log_s("Codec not found.");
        return -1;
    }
    if (avcodec_open2(pCodecCtx, pCodec, NULL)<0) {//打开解码器
        log_s("Could not open codec.");
        return -1;
    }
    //7. 解码播放开始准备工作
    pFrame = av_frame_alloc();
    pFrameYUV = av_frame_alloc();

    //根据需要解码的类型,获取需要的buffer,不要忘记free
    outBuffer = (uint8_t *)av_malloc(av_image_get_buffer_size(AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height, 1) * sizeof(uint8_t));
    //根据指定的图像参数和提供的数组设置数据指针和行数 ,数据填充到对应的pFrameYUV里面
    av_image_fill_arrays(pFrameYUV->data, pFrameYUV->linesize, outBuffer, AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height, 1);

    pPacket = av_packet_alloc();
    log_s("--------------- File Information ----------------");
    av_dump_format(pFmtCtx, 0, filePath, 0);
    log_s("-------------------------------------------------");
    //获取SwsContext
    pSwsCtx = sws_getContext(pCodecCtx->width, pCodecCtx->height, pCodecCtx->pix_fmt,
        pCodecCtx->width, pCodecCtx->height, AV_PIX_FMT_YUV420P, NULL, NULL, NULL, NULL);
    //----------------------------------------------------------------------------------------------------------------
    // 8. SDL相关初始化
    if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_TIMER)) {
        log_s("Could not initialize SDL - ");
        log_s(SDL_GetError());
        return -1;
    }
    screen_w = pCodecCtx->width;
    screen_h = pCodecCtx->height;
    screen = SDL_CreateWindow("WS ffmpeg player", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
        pCodecCtx->width/2, pCodecCtx->height/2, SDL_WINDOW_OPENGL);
    if (!screen) {
        log_s("SDL: could not create window - exiting");
        log_s(SDL_GetError());
        return -1;
    }

    sdlRenderer = SDL_CreateRenderer(screen, -1, 0);
    //IYUV: Y + U + V  (3 planes)
    //YV12: Y + V + U  (3 planes)
    sdlTexture = SDL_CreateTexture(sdlRenderer, SDL_PIXELFORMAT_IYUV, SDL_TEXTUREACCESS_STREAMING, pCodecCtx->width, pCodecCtx->height);

    sdlRect.x = 0;
    sdlRect.y = 0;
    sdlRect.w = screen_w;
    sdlRect.h = screen_h;

    video_tid = SDL_CreateThread(sfp_refresh_thread, NULL, NULL);
    //----------------------------------------------------------------------------------------------------------------


    int count = 0;

    //9.读取数据播放
    for (;;) {
        //Wait
        SDL_WaitEvent(&event);
        if (event.type == SFM_REFRESH_EVENT) {
            if (av_read_frame(pFmtCtx, pPacket) == 0) {
                if (pPacket->stream_index == videoIndex) {
                    if (avcodec_send_packet(pCodecCtx, pPacket) != 0) {//解码一帧压缩数据
                        log_s("Decode end or Error.");
                        break;
                    }
                    else {//处理解码数据
                        avcodec_receive_frame(pCodecCtx, pFrame);

                        if (sws_scale(pSwsCtx, (const uint8_t* const*)pFrame->data, pFrame->linesize, 0, pCodecCtx->height,
                            pFrameYUV->data, pFrameYUV->linesize) == 0) {
                            continue;
                        }

                        count++;

                        //SDL播放---------------------------
                        SDL_UpdateTexture(sdlTexture, NULL, pFrameYUV->data[0], pFrameYUV->linesize[0]);
                        SDL_RenderClear(sdlRenderer);
                        //SDL_RenderCopy( sdlRenderer, sdlTexture, &sdlRect, &sdlRect);  
                        SDL_RenderCopy(sdlRenderer, sdlTexture, &sdlRect, NULL);
                        SDL_RenderPresent(sdlRenderer);
                        //SDL End-----------------------

                        log_s("Succeed to play frame!", count);
                    }
                }
            }else {
                //退出线程
                thread_exit = 1;
                av_packet_unref(pPacket);
            }
        }
        else if (event.type == SDL_KEYDOWN) {
            log_s("Pause");
            //Pause
            if (event.key.keysym.sym == SDLK_SPACE)
                thread_pause = !thread_pause;
        }
        else if (event.type == SDL_QUIT) {
            log_s("quit");
            thread_exit = 1;
            break;
        }
        else if (event.type == SFM_BREAK_EVENT) {
            log_s("break");
            break;
        }
    }
    //sdl退出
    SDL_Quit();

    //回收
    if (pSwsCtx != NULL) {
        sws_freeContext(pSwsCtx);
    }
    if (outBuffer != NULL) {
        av_free(outBuffer);
    }
    if (pFrameYUV != NULL) {
        av_frame_free(&pFrameYUV);
    }
    if (pFrame != NULL) {
        av_frame_free(&pFrame);
    }
    if (pCodecCtx != NULL) {
        avcodec_close(pCodecCtx);
    }
    if (pFmtCtx != NULL) {
        avformat_close_input(&pFmtCtx);
    }
}


int main()
{
    play("F:/视频资源/gxsp.mp4");
    getchar();
    return 0;
}





参考链接:https://blog.csdn.net/king1425/article/details/71171142

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,588评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,456评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,146评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,387评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,481评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,510评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,522评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,296评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,745评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,039评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,202评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,901评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,538评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,165评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,415评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,081评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,085评论 2 352

推荐阅读更多精彩内容

  • 凡事预则立,不预则废。之所以热衷于跳舞,无非因为工作没有方向感觉整个人都无所适从。所以需要找点爱好填补。但其实如果...
    蒋羽燃阅读 137评论 0 0
  • 文/张小木 今天我写下这篇文章的原因是因为我听说了一个让我“震惊”的消息:跟我同一个名字的女孩得了脑瘤,而且还是我...
    萵是張小木阅读 594评论 0 1
  • 一叶秋的重 却 压翻夏时酿好的勇气 雨水浸湿文字 也没了我们来时的脚印 人未老 花已谢过几载 花未老 人却几次轮还...
    夏屿先生阅读 237评论 1 4