]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/codec.h
avfilter/af_adelay: make per channel delay argument an int64_t
[ffmpeg] / libavcodec / codec.h
index 50a22f6e3cb0a5d068c6a2cea07de4fdebe9123a..de050b2815ffb2aa650cc9769d7d4835dc1ee024 100644 (file)
@@ -258,6 +258,11 @@ typedef struct AVCodec {
      * dst and src will (rarely) point to the same context, in which case memcpy should be skipped.
      */
     int (*update_thread_context)(struct AVCodecContext *dst, const struct AVCodecContext *src);
+
+    /**
+     * Copy variables back to the user-facing context
+     */
+    int (*update_thread_context_for_user)(struct AVCodecContext *dst, const struct AVCodecContext *src);
     /** @} */
 
     /**