1 Star 0 Fork 0

Zgjian / FFmpegTest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
rtmp_push_h264.cpp 3.55 KB
一键复制 编辑 原始数据 按行查看 历史
Zgjian 提交于 2019-11-19 22:56 . add rtmp
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
extern "C" {
#include <libavcodec/avcodec.h>
#include <libavutil/timestamp.h>
#include <libavformat/avformat.h>
#include <libavutil/time.h>
}
#include <memory>
#include <string>
using namespace std;
#define INBUF_SIZE 4096
static AVFormatContext *ofmt_ctx = NULL;
static void decode(AVCodecContext *dec_ctx, AVFrame *frame, AVPacket *pkt)
{
char buf[1024];
int ret;
ret = avcodec_send_packet(dec_ctx, pkt);
if (ret < 0) {
fprintf(stderr, "Error sending a packet for decoding\n");
exit(1);
}
while (ret >= 0) {
ret = avcodec_receive_frame(dec_ctx, frame);
if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
return;
else if (ret < 0) {
fprintf(stderr, "Error during decoding\n");
exit(1);
}
printf("saving frame %3d\n", dec_ctx->frame_number);
fflush(stdout);
}
}
int InitRtmpPusher()
{
const string rtmp_url = "rtmp://127.0.0.1/live/1";
avformat_alloc_output_context2(&ofmt_ctx, NULL, "flv", rtmp_url.c_str());
if (!ofmt_ctx) {
printf("Could not create output context\n");
return -1;
}
}
int main(int argc, char **argv)
{
const char *filename = "oceans.h264";
AVPacket *pkt = av_packet_alloc();
if (!pkt) {
exit(1);
}
/* set end of buffer to 0 (this ensures that no overreading happens for damaged MPEG streams) */
uint8_t inbuf[INBUF_SIZE + AV_INPUT_BUFFER_PADDING_SIZE];
memset(inbuf + INBUF_SIZE, 0, AV_INPUT_BUFFER_PADDING_SIZE);
/* find the video decoder */
const AVCodec *codec = avcodec_find_decoder(AV_CODEC_ID_H264);
if (!codec) {
fprintf(stderr, "Codec not found\n");
exit(1);
}
AVCodecParserContext *parser = av_parser_init(codec->id);
if (!parser) {
fprintf(stderr, "parser not found\n");
exit(1);
}
AVCodecContext *c = avcodec_alloc_context3(codec);
if (!c) {
fprintf(stderr, "Could not allocate video codec context\n");
exit(1);
}
/* For some codecs, such as msmpeg4 and mpeg4, width and height
MUST be initialized there because this information is not
available in the bitstream. */
/* open it */
if (avcodec_open2(c, codec, nullptr) < 0) {
fprintf(stderr, "Could not open codec\n");
exit(1);
}
FILE *f = fopen(filename, "rb");
if (!f) {
fprintf(stderr, "Could not open %s\n", filename);
exit(1);
}
AVFrame *frame = av_frame_alloc();
if (!frame) {
fprintf(stderr, "Could not allocate video frame\n");
exit(1);
}
uint8_t *data;
size_t data_size;
while (!feof(f)) {
/* read raw data from the input file */
data_size = fread(inbuf, 1, INBUF_SIZE, f);
if (!data_size)
break;
/* use the parser to split the data into frames */
data = inbuf;
while (data_size > 0) {
int ret = av_parser_parse2(parser, c, &pkt->data, &pkt->size,
data, data_size, AV_NOPTS_VALUE, AV_NOPTS_VALUE, 0);
if (ret < 0) {
fprintf(stderr, "Error while parsing\n");
exit(1);
}
data += ret;
data_size -= ret;
if (pkt->size) {
decode(c, frame, pkt);
}
}
}
/* flush the decoder */
decode(c, frame, nullptr);
fclose(f);
av_parser_close(parser);
avcodec_free_context(&c);
av_frame_free(&frame);
av_packet_free(&pkt);
return 0;
}
C
1
https://gitee.com/zhengguojian/FFmpegTest.git
git@gitee.com:zhengguojian/FFmpegTest.git
zhengguojian
FFmpegTest
FFmpegTest
master

搜索帮助