From: Marton Balint <cus@passwd.hu>
To: ffmpeg-devel@ffmpeg.org
Cc: Marton Balint <cus@passwd.hu>
Subject: [FFmpeg-devel] [PATCH] avformat/flvdec: handle exheader fourcc correctly in metadata
Date: Sat, 29 Jul 2023 19:49:00 +0200
Message-ID: <20230729174900.25789-1-cus@passwd.hu> (raw)
In-Reply-To: <CADxeRwk4Q0STe=xUxstRN4EpAQZwzSqvEVo9uu9TsSkMmYiuJQ@mail.gmail.com>
In metadata fourcc is carried in the AMF number, not as binary.
Partially based on a patch by Steven Liu.
Signed-off-by: Marton Balint <cus@passwd.hu>
---
libavformat/flvdec.c | 76 +++++++++++++++++---------------------------
1 file changed, 30 insertions(+), 46 deletions(-)
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c
index 3fe21622f7..b904029ba5 100644
--- a/libavformat/flvdec.c
+++ b/libavformat/flvdec.c
@@ -304,30 +304,18 @@ static void flv_set_audio_codec(AVFormatContext *s, AVStream *astream,
}
}
-static int flv_same_video_codec(AVFormatContext *s, AVCodecParameters *vpar, int flags)
+static int flv_same_video_codec(AVFormatContext *s, AVCodecParameters *vpar, uint32_t flv_codecid)
{
- int flv_codecid = flags & FLV_VIDEO_CODECID_MASK;
- FLVContext *flv = s->priv_data;
-
if (!vpar->codec_id && !vpar->codec_tag)
return 1;
- if (flv->exheader) {
- uint8_t *codec_id_str = (uint8_t *)s->pb->buf_ptr;
- uint32_t codec_id = codec_id_str[3] | codec_id_str[2] << 8 | codec_id_str[1] << 16 | codec_id_str[0] << 24;
- switch(codec_id) {
- case MKBETAG('h', 'v', 'c', '1'):
- return vpar->codec_id == AV_CODEC_ID_HEVC;
- case MKBETAG('a', 'v', '0', '1'):
- return vpar->codec_id == AV_CODEC_ID_AV1;
- case MKBETAG('v', 'p', '0', '9'):
- return vpar->codec_id == AV_CODEC_ID_VP9;
- default:
- break;
- }
- }
-
switch (flv_codecid) {
+ case MKBETAG('h', 'v', 'c', '1'):
+ return vpar->codec_id == AV_CODEC_ID_HEVC;
+ case MKBETAG('a', 'v', '0', '1'):
+ return vpar->codec_id == AV_CODEC_ID_AV1;
+ case MKBETAG('v', 'p', '0', '9'):
+ return vpar->codec_id == AV_CODEC_ID_VP9;
case FLV_CODECID_H263:
return vpar->codec_id == AV_CODEC_ID_FLV1;
case FLV_CODECID_SCREEN:
@@ -346,36 +334,26 @@ static int flv_same_video_codec(AVFormatContext *s, AVCodecParameters *vpar, int
}
static int flv_set_video_codec(AVFormatContext *s, AVStream *vstream,
- int flv_codecid, int read)
+ uint32_t flv_codecid, int read)
{
FFStream *const vstreami = ffstream(vstream);
- FLVContext *flv = s->priv_data;
int ret = 0;
AVCodecParameters *par = vstream->codecpar;
enum AVCodecID old_codec_id = vstream->codecpar->codec_id;
- flv_codecid &= FLV_VIDEO_CODECID_MASK;
-
- if (flv->exheader) {
- uint32_t codec_id = avio_rb32(s->pb);
-
- switch(codec_id) {
- case MKBETAG('h', 'v', 'c', '1'):
- par->codec_id = AV_CODEC_ID_HEVC;
- vstreami->need_parsing = AVSTREAM_PARSE_HEADERS;
- return 4;
- case MKBETAG('a', 'v', '0', '1'):
- par->codec_id = AV_CODEC_ID_AV1;
- vstreami->need_parsing = AVSTREAM_PARSE_HEADERS;
- return 4;
- case MKBETAG('v', 'p', '0', '9'):
- par->codec_id = AV_CODEC_ID_VP9;
- vstreami->need_parsing = AVSTREAM_PARSE_HEADERS;
- return 4;
- default:
- break;
- }
- }
- switch (flv_codecid) {
+
+ switch(flv_codecid) {
+ case MKBETAG('h', 'v', 'c', '1'):
+ par->codec_id = AV_CODEC_ID_HEVC;
+ vstreami->need_parsing = AVSTREAM_PARSE_HEADERS;
+ break;
+ case MKBETAG('a', 'v', '0', '1'):
+ par->codec_id = AV_CODEC_ID_AV1;
+ vstreami->need_parsing = AVSTREAM_PARSE_HEADERS;
+ break;
+ case MKBETAG('v', 'p', '0', '9'):
+ par->codec_id = AV_CODEC_ID_VP9;
+ vstreami->need_parsing = AVSTREAM_PARSE_HEADERS;
+ break;
case FLV_CODECID_H263:
par->codec_id = AV_CODEC_ID_FLV1;
break;
@@ -1065,6 +1043,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
AVStream *st = NULL;
int last = -1;
int orig_size;
+ uint32_t video_codec_id = 0;
retry:
/* pkt size is repeated at end. skip it */
@@ -1111,12 +1090,17 @@ retry:
} else if (type == FLV_TAG_TYPE_VIDEO) {
stream_type = FLV_STREAM_TYPE_VIDEO;
flags = avio_r8(s->pb);
+ video_codec_id = flags & FLV_VIDEO_CODECID_MASK;
/*
* Reference Enhancing FLV 2023-03-v1.0.0-B.8
* https://github.com/veovera/enhanced-rtmp/blob/main/enhanced-rtmp-v1.pdf
* */
flv->exheader = (flags >> 7) & 1;
size--;
+ if (flv->exheader) {
+ video_codec_id = avio_rb32(s->pb);
+ size -= 4;
+ }
if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_VIDEO_INFO_CMD)
goto skip;
} else if (type == FLV_TAG_TYPE_META) {
@@ -1174,7 +1158,7 @@ skip:
break;
} else if (stream_type == FLV_STREAM_TYPE_VIDEO) {
if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&
- (s->video_codec_id || flv_same_video_codec(s, st->codecpar, flags)))
+ (s->video_codec_id || flv_same_video_codec(s, st->codecpar, video_codec_id)))
break;
} else if (stream_type == FLV_STREAM_TYPE_SUBTITLE) {
if (st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE)
@@ -1275,7 +1259,7 @@ retry_duration:
avcodec_parameters_free(&par);
}
} else if (stream_type == FLV_STREAM_TYPE_VIDEO) {
- int ret = flv_set_video_codec(s, st, flags, 1);
+ int ret = flv_set_video_codec(s, st, video_codec_id, 1);
if (ret < 0)
return ret;
size -= ret;
--
2.35.3
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
next prev parent reply other threads:[~2023-07-29 17:49 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-27 2:37 [FFmpeg-devel] [PATCH] avformat/flvdec: use avio operation instead of pb->buf_ptr use Steven Liu
2023-07-27 6:46 ` Hendrik Leppkes
2023-07-27 7:31 ` [FFmpeg-devel] [PATCH v2] " Steven Liu
2023-07-27 18:56 ` Marton Balint
2023-07-29 0:25 ` [FFmpeg-devel] [PATCH v3] avformat/flvdec: move read fourcc output before flv_same_video_codec Steven Liu
2023-07-29 8:41 ` Hendrik Leppkes
2023-07-29 8:42 ` Marton Balint
2023-07-29 9:54 ` Hendrik Leppkes
2023-07-29 9:56 ` Hendrik Leppkes
2023-07-29 10:06 ` Steven Liu
2023-07-29 17:49 ` Marton Balint [this message]
2023-08-02 1:44 ` [FFmpeg-devel] [PATCH] avformat/flvdec: handle exheader fourcc correctly in metadata Steven Liu
2023-08-03 20:11 ` Marton Balint
2023-07-27 8:00 ` [FFmpeg-devel] [PATCH] avformat/flvdec: use avio operation instead of pb->buf_ptr use Steven Liu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230729174900.25789-1-cus@passwd.hu \
--to=cus@passwd.hu \
--cc=ffmpeg-devel@ffmpeg.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git