* [FFmpeg-devel] [PATCH] avformat/mov: Fix endian-dependent parsing
@ 2022-01-21 10:08 Andreas Rheinhardt
2022-01-21 10:52 ` Martin Storsjö
0 siblings, 1 reply; 2+ messages in thread
From: Andreas Rheinhardt @ 2022-01-21 10:08 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Andreas Rheinhardt
MOVAtom.type is always read as a little-endian number
(despite MOV/ISOBMFF being big-endian).
Fixes the matroska-dovi-write-config8 FATE-test on big-endian
arches (which runs into the "index out of range" warning message).
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
A few days ago I sent a patch using the dv84.mov sample
that also failed on the PPC BE endian FATE box, yet this test
reencoded the audio and so I blamed this (despite encoder and
decoder being fixed-point); see [1]. Seems like I was wrong
and the fixed-point codecs are indeed bitexact.
[1]: https://ffmpeg.org/pipermail/ffmpeg-devel/2022-January/291792.html
libavformat/mov.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/mov.c b/libavformat/mov.c
index e401cd39b5..1437d160f8 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -407,7 +407,7 @@ retry:
atom.size -= 16;
if (!key && c->found_hdlr_mdta && c->meta_keys) {
- uint32_t index = AV_RB32(&atom.type);
+ uint32_t index = av_bswap32(atom.type); // BE number has been read as LE
if (index < c->meta_keys_count && index > 0) {
key = c->meta_keys[index];
} else if (atom.type != MKTAG('c', 'o', 'v', 'r')) {
--
2.32.0
_______________________________________________
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".
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avformat/mov: Fix endian-dependent parsing
2022-01-21 10:08 [FFmpeg-devel] [PATCH] avformat/mov: Fix endian-dependent parsing Andreas Rheinhardt
@ 2022-01-21 10:52 ` Martin Storsjö
0 siblings, 0 replies; 2+ messages in thread
From: Martin Storsjö @ 2022-01-21 10:52 UTC (permalink / raw)
To: FFmpeg development discussions and patches; +Cc: Andreas Rheinhardt
On Fri, 21 Jan 2022, Andreas Rheinhardt wrote:
> MOVAtom.type is always read as a little-endian number
> (despite MOV/ISOBMFF being big-endian).
> Fixes the matroska-dovi-write-config8 FATE-test on big-endian
> arches (which runs into the "index out of range" warning message).
>
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> ---
> A few days ago I sent a patch using the dv84.mov sample
> that also failed on the PPC BE endian FATE box, yet this test
> reencoded the audio and so I blamed this (despite encoder and
> decoder being fixed-point); see [1]. Seems like I was wrong
> and the fixed-point codecs are indeed bitexact.
>
> [1]: https://ffmpeg.org/pipermail/ffmpeg-devel/2022-January/291792.html
>
> libavformat/mov.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavformat/mov.c b/libavformat/mov.c
> index e401cd39b5..1437d160f8 100644
> --- a/libavformat/mov.c
> +++ b/libavformat/mov.c
> @@ -407,7 +407,7 @@ retry:
> atom.size -= 16;
>
> if (!key && c->found_hdlr_mdta && c->meta_keys) {
> - uint32_t index = AV_RB32(&atom.type);
> + uint32_t index = av_bswap32(atom.type); // BE number has been read as LE
LGTM.
// Martin
_______________________________________________
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".
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-01-21 10:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-21 10:08 [FFmpeg-devel] [PATCH] avformat/mov: Fix endian-dependent parsing Andreas Rheinhardt
2022-01-21 10:52 ` Martin Storsjö
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