From 57687bdfcdba04e51fc5dff2d40169a3d0ff33cf Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Sat, 9 Feb 2019 12:54:12 +0100 Subject: [PATCH] Write header file with correct extradata When recording, the header must be written with extradata set to the content of the very first packet. Suggested-by: Steve Lhomme --- app/src/recorder.c | 67 +++++++++++++++++++++++++++++++++++----------- app/src/recorder.h | 1 + 2 files changed, 53 insertions(+), 15 deletions(-) diff --git a/app/src/recorder.c b/app/src/recorder.c index 2e846e91..62d8be2f 100644 --- a/app/src/recorder.c +++ b/app/src/recorder.c @@ -5,6 +5,16 @@ #include "config.h" #include "log.h" +// In ffmpeg/doc/APIchanges: +// 2016-04-11 - 6f69f7a / 9200514 - lavf 57.33.100 / 57.5.0 - avformat.h +// Add AVStream.codecpar, deprecate AVStream.codec. +#if (LIBAVFORMAT_VERSION_MICRO >= 100 /* FFmpeg */ && \ + LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(57, 33, 100)) \ + || (LIBAVFORMAT_VERSION_MICRO < 100 && /* Libav */ \ + LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(57, 5, 0)) +# define LAVF_NEW_CODEC_API +#endif + static const AVOutputFormat *find_mp4_muxer(void) { #if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(58, 9, 100) void *opaque = NULL; @@ -30,6 +40,7 @@ SDL_bool recorder_init(struct recorder *recorder, const char *filename, } recorder->declared_frame_size = declared_frame_size; + recorder->header_written = SDL_FALSE; return SDL_TRUE; } @@ -63,13 +74,7 @@ SDL_bool recorder_open(struct recorder *recorder, AVCodec *input_codec) { return SDL_FALSE; } -// In ffmpeg/doc/APIchanges: -// 2016-04-11 - 6f69f7a / 9200514 - lavf 57.33.100 / 57.5.0 - avformat.h -// Add AVStream.codecpar, deprecate AVStream.codec. -#if (LIBAVFORMAT_VERSION_MICRO >= 100 /* FFmpeg */ && \ - LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(57, 33, 100)) \ - || (LIBAVFORMAT_VERSION_MICRO < 100 && /* Libav */ \ - LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(57, 5, 0)) +#ifdef LAVF_NEW_CODEC_API ostream->codecpar->codec_type = AVMEDIA_TYPE_VIDEO; ostream->codecpar->codec_id = input_codec->id; ostream->codecpar->format = AV_PIX_FMT_YUV420P; @@ -93,14 +98,6 @@ SDL_bool recorder_open(struct recorder *recorder, AVCodec *input_codec) { return SDL_FALSE; } - ret = avformat_write_header(recorder->ctx, NULL); - if (ret < 0) { - LOGE("Failed to write header to %s", recorder->filename); - avio_closep(&recorder->ctx->pb); - avformat_free_context(recorder->ctx); - return SDL_FALSE; - } - return SDL_TRUE; } @@ -113,6 +110,46 @@ void recorder_close(struct recorder *recorder) { avformat_free_context(recorder->ctx); } +SDL_bool recorder_write_header(struct recorder *recorder, AVPacket *packet) { + AVStream *ostream = recorder->ctx->streams[0]; + + uint8_t *extradata = SDL_malloc(packet->size * sizeof(uint8_t)); + if (!extradata) { + LOGC("Cannot allocate extradata"); + return SDL_FALSE; + } + + // copy the first packet to the extra data + memcpy(extradata, packet->data, packet->size); + +#ifdef LAVF_NEW_CODEC_API + ostream->codecpar->extradata = extradata; + ostream->codecpar->extradata_size = packet->size; +#else + ostream->codec->extradata = extradata; + ostream->codec->extradata_size = packet->size; +#endif + + int ret = avformat_write_header(recorder->ctx, NULL); + if (ret < 0) { + LOGE("Failed to write header to %s", recorder->filename); + SDL_free(extradata); + avio_closep(&recorder->ctx->pb); + avformat_free_context(recorder->ctx); + return SDL_FALSE; + } + + return SDL_TRUE; +} + SDL_bool recorder_write(struct recorder *recorder, AVPacket *packet) { + if (!recorder->header_written) { + SDL_bool ok = recorder_write_header(recorder, packet); + if (!ok) { + return SDL_FALSE; + } + recorder->header_written = SDL_TRUE; + } + return av_write_frame(recorder->ctx, packet) >= 0; } diff --git a/app/src/recorder.h b/app/src/recorder.h index 9cb17fe0..4959c7ab 100644 --- a/app/src/recorder.h +++ b/app/src/recorder.h @@ -10,6 +10,7 @@ struct recorder { char *filename; AVFormatContext *ctx; struct size declared_frame_size; + SDL_bool header_written; }; SDL_bool recorder_init(struct recorder *recoder, const char *filename,