[FFmpeg-devel] [PATCH 01/11] avformat/evcdec: set the demuxer as AVFMT_NOTIMESTAMPS

James Almer jamrial at gmail.com
Fri Jun 16 21:07:08 EEST 2023


On 6/15/2023 12:18 PM, James Almer wrote:
> Signed-off-by: James Almer <jamrial at gmail.com>
> ---
>   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),

I'll apply the rest of this set soon.


More information about the ffmpeg-devel mailing list