Re: [FFmpeg-devel] [PATCH 01/17] avcodec/avcodec: add side data to AVCodecContext

2023-09-05 Thread James Almer
On 9/5/2023 8:37 AM, Anton Khirnov wrote: Quoting James Almer (2023-09-05 13:26:22) On 9/5/2023 8:07 AM, Anton Khirnov wrote: Quoting James Almer (2023-09-05 00:08:48) This will allow the propagation of global side data within the AVCodecContext instead of having to do it inside packets, and t

Re: [FFmpeg-devel] [PATCH 01/17] avcodec/avcodec: add side data to AVCodecContext

2023-09-05 Thread Anton Khirnov
Quoting James Almer (2023-09-05 13:26:22) > On 9/5/2023 8:07 AM, Anton Khirnov wrote: > > Quoting James Almer (2023-09-05 00:08:48) > >> This will allow the propagation of global side data within the > >> AVCodecContext > >> instead of having to do it inside packets, and thus be available during

Re: [FFmpeg-devel] [PATCH 01/17] avcodec/avcodec: add side data to AVCodecContext

2023-09-05 Thread James Almer
On 9/5/2023 8:07 AM, Anton Khirnov wrote: Quoting James Almer (2023-09-05 00:08:48) This will allow the propagation of global side data within the AVCodecContext instead of having to do it inside packets, and thus be available during init(). Global and frame specific side data will therefore be

Re: [FFmpeg-devel] [PATCH 01/17] avcodec/avcodec: add side data to AVCodecContext

2023-09-05 Thread Anton Khirnov
Quoting James Almer (2023-09-05 00:08:48) > This will allow the propagation of global side data within the AVCodecContext > instead of having to do it inside packets, and thus be available during > init(). > Global and frame specific side data will therefore be distinct. This commit message is mi

[FFmpeg-devel] [PATCH 01/17] avcodec/avcodec: add side data to AVCodecContext

2023-09-04 Thread James Almer
This will allow the propagation of global side data within the AVCodecContext instead of having to do it inside packets, and thus be available during init(). Global and frame specific side data will therefore be distinct. Signed-off-by: James Almer --- libavcodec/avcodec.c | 2 + libavcodec/av

[FFmpeg-devel] [PATCH 01/17] avcodec/avcodec: add side data to AVCodecContext

2023-09-04 Thread James Almer
Signed-off-by: James Almer --- libavcodec/avcodec.c | 2 + libavcodec/avcodec.h | 8 libavcodec/avpacket.c | 99 +++ libavcodec/packet.h | 68 + 4 files changed, 177 insertions(+) diff --git a/libavcodec/avcodec.c b/l