利用H264解码分为几个步骤:

注意一点在添加头文件的时候要添加extern "C",不然会出现错误

  1. extern "C"
  2. {
  3. #include <avcodec.h>
  4. #include <avformat.h>
  5. #include <avutil.h>
  6. #include <swscale.h>
  7. };

这里申明了几个全局变量

  1. AVCodec         *pCodec = NULL;
  2. AVCodecContext  *pCodecCtx = NULL;
  3. SwsContext      *img_convert_ctx = NULL;
  4. AVFrame         *pFrame = NULL;
  5. AVFrame         *pFrameRGB = NULL;

1. 初始化

  1. int H264_Init(void)
  2. {
  3. /* must be called before using avcodec lib*/
  4. avcodec_init();
  5. /* register all the codecs */
  6. avcodec_register_all();
  7. /* find the h264 video decoder */
  8. pCodec = avcodec_find_decoder(CODEC_ID_H264);
  9. if (!pCodec) {
  10. fprintf(stderr, "codec not found\n");
  11. }
  12. pCodecCtx = avcodec_alloc_context();
  13. /* open the coderc */
  14. if (avcodec_open(pCodecCtx, pCodec) < 0) {
  15. fprintf(stderr, "could not open codec\n");
  16. }
  17. // Allocate video frame
  18. pFrame = avcodec_alloc_frame();
  19. if(pFrame == NULL)
  20. return -1;
  21. // Allocate an AVFrame structure
  22. pFrameRGB=avcodec_alloc_frame();
  23. if(pFrameRGB == NULL)
  24. return -1;
  25. return 0;
  26. }

在最早使用的时候没有使用全局变量,初始化中也就只有init和regisger这两个函数,而这样做的下场是,非关键帧全部无法解码,只有关键帧才有办法解码。

2. 解码

解码的时候avcodec_decode_video函数是进行解码操作,在外部定义outputbuf的大小时,pixes*3,outsize是返回的outputbuf的size,值也是pixes*3。

在解码的时候这几句话的意义是将YUV420P的数据倒置。在原先使用中,发现解出来的图像居然是中心旋转图,后面在网上找了些办法,觉得这个比较实用。解码实时是很重要的,图像转化完之后也可以讲RGB图再次转化,那样也能成为一个正的图,但是那样效率就明显低了。

  1. pFrame->data[0] += pFrame->linesize[0] * (pCodecCtx->height-1);
  2. pFrame->linesize[0] *= -1;
  3. pFrame->data[1] += pFrame->linesize[1] * (pCodecCtx->height/2 - 1);;
  4. pFrame->linesize[1] *= -1;
  5. pFrame->data[2] += pFrame->linesize[2] * (pCodecCtx->height/2 - 1);;
  6. pFrame->linesize[2] *= -1;
  1. int H264_2_RGB(unsigned char *inputbuf, int frame_size, unsigned char *outputbuf, unsigned int*outsize)
  2. {
  3. int             decode_size;
  4. int             numBytes;
  5. int             av_result;
  6. uint8_t         *buffer = NULL;
  7. printf("Video decoding\n");
  8. av_result = avcodec_decode_video(pCodecCtx, pFrame, &decode_size, inputbuf, frame_size);
  9. if (av_result < 0)
  10. {
  11. fprintf(stderr, "decode failed: inputbuf = 0x%x , input_framesize = %d\n", inputbuf, frame_size);
  12. return -1;
  13. }
  14. // Determine required buffer size and allocate buffer
  15. numBytes=avpicture_get_size(PIX_FMT_BGR24, pCodecCtx->width,
  16. pCodecCtx->height);
  17. buffer = (uint8_t*)malloc(numBytes * sizeof(uint8_t));
  18. // Assign appropriate parts of buffer to image planes in pFrameRGB
  19. avpicture_fill((AVPicture *)pFrameRGB, buffer, PIX_FMT_BGR24,
  20. pCodecCtx->width, pCodecCtx->height);
  21. img_convert_ctx = sws_getCachedContext(img_convert_ctx,pCodecCtx->width,pCodecCtx->height,
  22. //PIX_FMT_YUV420P,pCodecCtx->width,pCodecCtx->height,pCodecCtx->pix_fmt,
  23. pCodecCtx->pix_fmt,pCodecCtx->width,pCodecCtx->height,PIX_FMT_RGB24 ,
  24. SWS_X ,NULL,NULL,NULL) ;
  25. if (img_convert_ctx == NULL)
  26. {
  27. printf("can't init convert context!\n") ;
  28. return -1;
  29. }
  30. pFrame->data[0] += pFrame->linesize[0] * (pCodecCtx->height-1);
  31. pFrame->linesize[0] *= -1;
  32. pFrame->data[1] += pFrame->linesize[1] * (pCodecCtx->height/2 - 1);;
  33. pFrame->linesize[1] *= -1;
  34. pFrame->data[2] += pFrame->linesize[2] * (pCodecCtx->height/2 - 1);;
  35. pFrame->linesize[2] *= -1;
  36. sws_scale(img_convert_ctx, pFrame->data, pFrame->linesize,
  37. 0, 0 - pCodecCtx->width, pFrameRGB->data, pFrameRGB->linesize);
  38. if (decode_size)
  39. {
  40. *outsize = pCodecCtx->width * pCodecCtx->height * 3;
  41. memcpy(outputbuf, pFrameRGB->data[0], *outsize);
  42. }
  43. free(buffer);
  44. return 0;
  45. }
//解码yuv 修改 PIX_FMT_YUV420P
memcpy(outputbuf, pFrameRGB->data[2], 720*576/4);
			memcpy(outputbuf, pFrameRGB->data[1], 720*576/4);
			memcpy(outputbuf, pFrameRGB->data[0], 720*576);

3. 释放资源

资源的回收。

  1. void H264_Release(void)
  2. {
  3. avcodec_close(pCodecCtx);
  4. av_free(pCodecCtx);
  5. av_free(pFrame);
  6. av_free(pFrameRGB);
  7. }

利用ffmpeg将H264流 解码为RGB的更多相关文章

  1. FFMPEG实现H264的解码(从源代码角度)

    农历2014年底了,将前段时间工作中研究的FFMPEG解码H264流程在此做一下整理,也算作年终技术总结了! H264解码原理: H264的原理参考另一篇博文 http://blog.csdn.net ...

  2. 利用ffmpeg将H264解码为RGB

    因为公司买到了一个不提供解码器的设备,我不得已还要做解码的工作.在网上找了一圈,H264解码比較方便的也就是ffmpeg一系列的函数库了,原本设备中也是用这套函数库解码,但厂家不给提供,没办法,仅仅得 ...

  3. 用ffmpeg把H264数据流解码成YUV420P

    在网上找了很久这方面的内容,发现网上的代码都太旧了,所使用的函数旧到连最新版本的ffmpeg都已经不包含了,所以对于我这个初学者来说太坑拉.不过经过多次查找ffmpeg的头文件和结合网上的内容,终于成 ...

  4. 利用FFmpeg 将 rtsp 获取H264裸流并保存到文件中

    既然已经可以通过 RTSP 获取h264 裸流了.那么通过 FFmpeg 将其保存到文件中怎么做呢? 一.首先RTSP获取 h264 裸流 我们上面两篇文章主要讲的是通过 rtsp://Your ip ...

  5. [ffmpeg] h264并行解码

    ffmpeg中的并行解码分为两种: Frame-level Parallelism Slice-level Parallelism Frame-level Parallelism 帧间依赖 我们之前讨 ...

  6. VS2015编译FFMPEG,修改FFmpeg缓冲区大小解决实时流解码丢包问题,FFmpeg错误rtsp流地址卡死的问题,设置超时

    之前尝试过很多网上利用Windows编译FFmpeg的文章,都没有办法编译X64位的FFmpeg,有些教程中有专门提到编译64位的FFmpeg需要下载mingw-w64-install,但是编译的过程 ...

  7. ps流提取H264并解码播放

    因为需要从海康ps流中提取H264数据并进行解码播放,才有了这篇文章.因为是视频编解码领域的纯入门新手,个别理解或者方法有误,需要自行判断,不过相关方法已经测试通过,对于 像我这样的新手还是有一定的借 ...

  8. ffmpeg H264 编解码配置

    ffmpeg H264编解码前面有文章介绍下,本文主要介绍一些参数配置. 编码: int InitEncoderCodec( int iWidth, int iHeight) { AVCodec * ...

  9. 【VS开发】【视频开发】利用ffmpeg+opencv实现画中画

    需求:把两路视频合成一路,即一个画面同时显示两路视频,其中一路缩小成小视频叠在大视频上面,和电视机的画中画效果类似. 思路:用h264编码的视频举例,文件中存储的es流是h264,经过解码成yuv,y ...

随机推荐

  1. JAVA中默认的编码方式

    转:http://blog.csdn.net/scyatcs/article/details/31356823 编码问题存在两个方面:JVM之内和JVM之外.1.Java文件编译后形成class这里J ...

  2. Yii AR中处理多表关联的relations配置

    关系型 Active Record官方文档中指出: 两张表之间的关联是根据外键来的,但是这种外键关联虽然在数据容错方面有益处,但是在性能上是个损伤,所以,一般是不定义外键的. 这种情况下,他们之间的关 ...

  3. ffmpeg命令行循环推流

    用ffmpeg循环推一个文件到rtmp服务器.一般都是建议用-stream_loop选项.如: ffmpeg -threads -re -fflags +genpts -stream_loop - - ...

  4. xBIM IFC 层次结构

    目录 xBIM 应用与学习 (一) xBIM 应用与学习 (二) xBIM 基本的模型操作 xBIM 日志操作 XBIM 3D 墙壁案例 xBIM 格式之间转换 xBIM 使用Linq 来优化查询 x ...

  5. Spring源码情操陶冶-DefaultBeanDefinitionDocumentReader#parseBeanDefinitions

    前言-阅读源码有利于陶冶情操,本文承接前文Spring源码情操陶冶-AbstractApplicationContext#obtainFreshBeanFactory 前文提到最关键的地方是解析bea ...

  6. console引起的eclipse 僵死/假死 问题排查及解决[转]

    原文链接:http://www.iteye.com/topic/1133941 症状: 使用Eclipse win 64位版本,indigo及kepler都重现了,使用tomcat 6.0.39,jd ...

  7. Spring整合JMS(三)——MessageConverter介绍

    原文链接:http://haohaoxuexi.iteye.com/blog/1900937 1.4     消息转换器MessageConverter MessageConverter的作用主要有两 ...

  8. js事件机制

    js事件属性:

  9. 利用Effmpeg 提取视频中的音频(mp3)

    在B站看到一个up发的病名为爱的钢琴曲,感觉很好听,然后当然是要加入歌单啊.然而不知道怎么转换成mp3,找来找去找到了EFFmpeg 这篇只是达到了我简单的需求,以后可能会有EFFmpeg更详细的使用 ...

  10. eclipse的maven项目中找不到Maven Dependencies

    菜菜的我又来了,笨鸟不一定要先飞,但一定要坚持 今天记录一个初级错误 比如我们在eclipse创建maven项目来运行我们的web项目 搭建完工程后发现javax-servlet包全部报错 到这里我还 ...