From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.ffmpeg.org (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id F37C44FB80 for ; Sat, 28 Jun 2025 00:46:32 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id 5C94468E23B; Sat, 28 Jun 2025 03:46:29 +0300 (EEST) Received: from mail-lj1-f181.google.com (mail-lj1-f181.google.com [209.85.208.181]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id 1E22F68E1A7 for ; Sat, 28 Jun 2025 03:46:22 +0300 (EEST) Received: by mail-lj1-f181.google.com with SMTP id 38308e7fff4ca-32b3a3a8201so3433401fa.0 for ; Fri, 27 Jun 2025 17:46:22 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1751071581; x=1751676381; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=XUpTZSaUpcHsDtzATbPVew6U+KTJ7OIPkVxBNI+WPVU=; b=npSubv3VKEvL4s+4noj9nfgFq06ytjWdh56IELNitIFGkR5yhQoqGkgrDdDqjOuKsz vx+2bhqPFwW14gijrJoM6ONUBcLXoy+i7/Wkk+9pDoOYfX0Lf9RC4r6Ww99QDCQzDxMY 3ivhjSWg/qqrP+ZjUSGv8sGPRwUIIoVTf/ko5tZiVw9Hwt2oeW4/HWPHA22qXhJ1ykE7 VSXFQsUNr968mRviMl8xIINViwHV49UiwE0PT0iGpm4QpDEy0+pgiOU1X6Ppaw800yNQ wALGpjZGIahoTE4W+AdPfZcpVDgnT8gcCwGQjgSiLdbLmU2bWfGUJkxMcTy8vX8glUbd fVqg== X-Gm-Message-State: AOJu0YzoCMRdSvneqrPiAxuURom1L2VvJv/tJAxLWBqLXh6vS2S/uD0K w8neYM1k2LsRFxnUlsdnW12aV9Pco9DlCdWDOEwOD/p02JyFoq7XZwK3GP1w+1Tk8RVyJTrVW2d IirKrRuhvdN5AqdPAHZsZHKfwz/3heeUAGJsU X-Gm-Gg: ASbGncu9qlbmXVDlm0CMh0VheuOmzJO4grQScZfXd8gLKgM82mnu5C7JbKJL40HckHf mkHPmBseSVFiwGNVenEK28OlVZT3hQ9Lkhdfrh1OKklcbtZTn7WxsYiGRjgNeWv4qp4BfBwwEK4 2p2fDa9FkpgYzQT3MRT2nzGXRY7hUBrvpfhzbfl4tkIULw X-Google-Smtp-Source: AGHT+IGDZX4waSVlT6oG2KHA/nv2jyPRqvMlNZ+aSuTW9tdr3sBnohp70O8mNfr26xlwqoJg5RVS5i7/lT1VDZx0/4w= X-Received: by 2002:a05:6512:15a2:b0:553:2868:6361 with SMTP id 2adb3069b0e04-5550b8226cdmr1836054e87.18.1751071580665; Fri, 27 Jun 2025 17:46:20 -0700 (PDT) MIME-Version: 1.0 From: Ken McGaugh Date: Sat, 28 Jun 2025 12:46:09 +1200 X-Gm-Features: Ac12FXyp4RSZXlomOPuD_MzSw2jE8Am8nsUyPQu_Y6HS10zpovI-Sc0VkZ0nDo4 Message-ID: To: ffmpeg-devel@ffmpeg.org X-Content-Filtered-By: Mailman/MimeDel 2.1.29 Subject: [FFmpeg-devel] [PATCH] avformat/mov.c: Fix to allow custom udta tags through when export_all option specified. X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: Hi, first time contributing to ffmpeg so I hope I got this right. We use custom udta tags in our pipeline but they were not coming through correctly. Looks like they were incorrectly being routed through the code path for "raw" data. --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index bd6b23466b..1b17f52a16 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -484,7 +484,7 @@ retry: return ret; } } else return 0; - } else if (atom.size > 4 && key && !c->itunes_metadata && !raw) { + } else if (atom.size > 4 && !c->itunes_metadata && !raw) { str_size = avio_rb16(pb); // string length if (str_size > atom.size) { raw = 1; -- 2.39.5 (Apple Git-154) _______________________________________________ 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".