mirror of
https://github.com/barry-ran/QtScrcpy.git
synced 2025-04-23 04:55:02 +00:00
update:Write header file with correct extradata
This commit is contained in:
parent
9c82d34500
commit
48aa5e5390
2 changed files with 51 additions and 17 deletions
|
@ -2,6 +2,16 @@
|
|||
|
||||
#include "recorder.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
|
||||
|
||||
Recorder::Recorder(const QString& fileName)
|
||||
: m_fileName(fileName)
|
||||
{
|
||||
|
@ -46,13 +56,7 @@ bool Recorder::open(AVCodec *inputCodec)
|
|||
return 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
|
||||
outStream->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
|
||||
outStream->codecpar->codec_id = inputCodec->id;
|
||||
outStream->codecpar->format = AV_PIX_FMT_YUV420P;
|
||||
|
@ -79,16 +83,7 @@ bool Recorder::open(AVCodec *inputCodec)
|
|||
avformat_free_context(m_formatCtx);
|
||||
m_formatCtx = Q_NULLPTR;
|
||||
return false;
|
||||
}
|
||||
|
||||
ret = avformat_write_header(m_formatCtx, Q_NULLPTR);
|
||||
if (ret < 0) {
|
||||
qCritical(QString("Failed to write header to %1").arg(m_fileName).toUtf8().toStdString().c_str());
|
||||
avio_closep(&m_formatCtx->pb);
|
||||
avformat_free_context(m_formatCtx);
|
||||
m_formatCtx = Q_NULLPTR;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -110,6 +105,13 @@ void Recorder::close()
|
|||
|
||||
bool Recorder::write(AVPacket *packet)
|
||||
{
|
||||
if (!m_headerWritten) {
|
||||
bool ok = recorderWriteHeader(packet);
|
||||
if (!ok) {
|
||||
return false;
|
||||
}
|
||||
m_headerWritten = true;
|
||||
}
|
||||
return av_write_frame(m_formatCtx, packet) >= 0;
|
||||
}
|
||||
|
||||
|
@ -129,3 +131,33 @@ const AVOutputFormat *Recorder::findMp4Muxer()
|
|||
} while (outFormat && strcmp(outFormat->name, "mp4"));
|
||||
return outFormat;
|
||||
}
|
||||
|
||||
bool Recorder::recorderWriteHeader(AVPacket *packet)
|
||||
{
|
||||
AVStream *ostream = m_formatCtx->streams[0];
|
||||
quint8* extradata = (quint8*)av_malloc(packet->size * sizeof(quint8));
|
||||
if (!extradata) {
|
||||
qCritical("Cannot allocate extradata");
|
||||
return 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(m_formatCtx, NULL);
|
||||
if (ret < 0) {
|
||||
qCritical("Failed to write header recorder file");
|
||||
free(extradata);
|
||||
avio_close(m_formatCtx->pb);
|
||||
avformat_free_context(m_formatCtx);
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -21,11 +21,13 @@ public:
|
|||
|
||||
private:
|
||||
const AVOutputFormat* findMp4Muxer();
|
||||
bool recorderWriteHeader(AVPacket* packet);
|
||||
|
||||
private:
|
||||
QString m_fileName = "";
|
||||
AVFormatContext* m_formatCtx = Q_NULLPTR;
|
||||
QSize m_declaredFrameSize;
|
||||
bool m_headerWritten = false;
|
||||
};
|
||||
|
||||
#endif // RECORDER_H
|
||||
|
|
Loading…
Add table
Reference in a new issue