From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 49EC745230 for ; Thu, 15 Jun 2023 15:19:02 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id A6E0168C488; Thu, 15 Jun 2023 18:19:01 +0300 (EEST) Received: from mail-oa1-f53.google.com (mail-oa1-f53.google.com [209.85.160.53]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 59D2868C3F4 for ; Thu, 15 Jun 2023 18:18:55 +0300 (EEST) Received: by mail-oa1-f53.google.com with SMTP id 586e51a60fabf-1a670ac3650so4676994fac.1 for ; Thu, 15 Jun 2023 08:18:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1686842333; x=1689434333; h=content-transfer-encoding:mime-version:message-id:date:subject:to :from:from:to:cc:subject:date:message-id:reply-to; bh=kGxGhHoTfpRlYe7atPBwSasqChbHvpnegLoZkgrAThU=; b=sZ7DJCpmF9bkRwV+IJ6pqqn3ULkIocYoPLOzGqeE2hLstkJIjPaMUPqaFZ2cdsHusc XbfZMP/Z/x/hPhQ/RET5D2oItF2oLc+aOsJyPv6fd++QHsbUTzsU1qoE2qx59wDQYB/o AYjMmogDipX4ooMG42fVGFpn5OJcSe+8O5iyFlxOrvMAPjh8ZcakjofThN/ZRrS5VKNx p82Hgs15NNZJpCHRuZiipWm5KpDb74poJJ+3xtaPckyfycmD8zupESamN4UPwzxXiGaH jjEh0NfI/HqHQcGBV5HSnjUZOLFTHTOX6xAxwFZMB4/AY3j3NaKPTGLgPJ7UMcimvh4W GvHQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1686842333; x=1689434333; h=content-transfer-encoding:mime-version:message-id:date:subject:to :from:x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=kGxGhHoTfpRlYe7atPBwSasqChbHvpnegLoZkgrAThU=; b=D0G/zemFb729leIgKEP2nMjLIzVmd6p0DRKiyaV5cQBZOyuFaMP9FASsYTcUDcmgYx +fr7B6i1esFAAbx+s570KRxLGOsc7xfJQEXcxLl6GLDiB0lAmAO7jxJK2Uz55ypEZW5r rNimsp+3McRVMPRSM6QRs0lTW5pnsrjHzj6TDtYVQTTrEXynpJZVlbDvimXMZqVkPM8F 5T5c43DqoUFSc8hIBrHpCUyjR5uejHMGphBvs67la2oRLMRFKrZtSldfcXcow7OHzdbY C0yG08jHBLVZ0u8gw8nWj/iaWv3uJgeg62uk9z3WsOscE1uq5I5QrkUIw5v/3ty8aPPT vK3g== X-Gm-Message-State: AC+VfDydCK6aAVqDRl5667Bh0ctfUGHdoy6kxmnHeQdiUV3J5BlIme41 Msl6H6wW6ON/z7rESrfE0i9f6rtyV9s= X-Google-Smtp-Source: ACHHUZ6O6RcRPWYsayPa98c+pmVj2YKwwK0S88vKsL/UCKu/tgQjTTW/+3OS5L2jOTydOrkowvQRew== X-Received: by 2002:a05:6870:5a83:b0:1a9:ac8c:d7e1 with SMTP id dt3-20020a0568705a8300b001a9ac8cd7e1mr1172233oab.5.1686842333443; Thu, 15 Jun 2023 08:18:53 -0700 (PDT) Received: from localhost.localdomain (host197.190-225-105.telecom.net.ar. [190.225.105.197]) by smtp.gmail.com with ESMTPSA id ve17-20020a0568710c1100b001a6a3f99691sm4748405oab.27.2023.06.15.08.18.52 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 15 Jun 2023 08:18:53 -0700 (PDT) From: James Almer To: ffmpeg-devel@ffmpeg.org Date: Thu, 15 Jun 2023 12:18:25 -0300 Message-ID: <20230615151836.50535-1-jamrial@gmail.com> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 01/11] avformat/evcdec: set the demuxer as AVFMT_NOTIMESTAMPS 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: Signed-off-by: James Almer --- libavformat/evcdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/evcdec.c b/libavformat/evcdec.c index 89eda0f53e..807406885a 100644 --- a/libavformat/evcdec.c +++ b/libavformat/evcdec.c @@ -268,7 +268,7 @@ const AVInputFormat ff_evc_demuxer = { .read_packet = evc_read_packet, // annexb_read_packet .read_close = evc_read_close, .extensions = "evc", - .flags = AVFMT_GENERIC_INDEX, + .flags = AVFMT_GENERIC_INDEX | AVFMT_NOTIMESTAMPS, .flags_internal = FF_FMT_INIT_CLEANUP, .raw_codec_id = AV_CODEC_ID_EVC, .priv_data_size = sizeof(EVCDemuxContext), -- 2.41.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".