Commit 7f6b794d authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit '069713aa'

* commit '069713aa':
  lavc: Drop deprecated thread opaque and codec pkt
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents 4eb86b83 069713aa
...@@ -2969,14 +2969,6 @@ typedef struct AVCodecContext { ...@@ -2969,14 +2969,6 @@ typedef struct AVCodecContext {
*/ */
int (*execute2)(struct AVCodecContext *c, int (*func)(struct AVCodecContext *c2, void *arg, int jobnr, int threadnr), void *arg2, int *ret, int count); int (*execute2)(struct AVCodecContext *c, int (*func)(struct AVCodecContext *c2, void *arg, int jobnr, int threadnr), void *arg2, int *ret, int count);
#if FF_API_THREAD_OPAQUE
/**
* @deprecated this field should not be used from outside of lavc
*/
attribute_deprecated
void *thread_opaque;
#endif
/** /**
* noise vs. sse weight for the nsse comparison function * noise vs. sse weight for the nsse comparison function
* - encoding: Set by user. * - encoding: Set by user.
...@@ -3122,14 +3114,6 @@ typedef struct AVCodecContext { ...@@ -3122,14 +3114,6 @@ typedef struct AVCodecContext {
int error_rate; int error_rate;
#endif #endif
#if FF_API_CODEC_PKT
/**
* @deprecated this field is not supposed to be accessed from outside lavc
*/
attribute_deprecated
AVPacket *pkt;
#endif
/** /**
* VBV delay coded in the last frame (in periods of a 27 MHz clock). * VBV delay coded in the last frame (in periods of a 27 MHz clock).
* Used for compliant TS muxing. * Used for compliant TS muxing.
......
...@@ -106,12 +106,6 @@ ...@@ -106,12 +106,6 @@
#ifndef FF_API_ASPECT_EXTENDED #ifndef FF_API_ASPECT_EXTENDED
#define FF_API_ASPECT_EXTENDED (LIBAVCODEC_VERSION_MAJOR < 57) #define FF_API_ASPECT_EXTENDED (LIBAVCODEC_VERSION_MAJOR < 57)
#endif #endif
#ifndef FF_API_THREAD_OPAQUE
#define FF_API_THREAD_OPAQUE (LIBAVCODEC_VERSION_MAJOR < 57)
#endif
#ifndef FF_API_CODEC_PKT
#define FF_API_CODEC_PKT (LIBAVCODEC_VERSION_MAJOR < 57)
#endif
#ifndef FF_API_ARCH_ALPHA #ifndef FF_API_ARCH_ALPHA
#define FF_API_ARCH_ALPHA (LIBAVCODEC_VERSION_MAJOR < 57) #define FF_API_ARCH_ALPHA (LIBAVCODEC_VERSION_MAJOR < 57)
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment