You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

251 lines
7.2KB

  1. /*
  2. * Copyright (c) 2001 Fabrice Bellard
  3. * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * Libav is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * Options definition for AVCodecContext.
  24. */
  25. #include "avcodec.h"
  26. #include "internal.h"
  27. #include "libavutil/avassert.h"
  28. #include "libavutil/internal.h"
  29. #include "libavutil/mem.h"
  30. #include "libavutil/opt.h"
  31. #include <float.h> /* FLT_MIN, FLT_MAX */
  32. #include <string.h>
  33. FF_DISABLE_DEPRECATION_WARNINGS
  34. #include "options_table.h"
  35. FF_ENABLE_DEPRECATION_WARNINGS
  36. static const char* context_to_name(void* ptr) {
  37. AVCodecContext *avc= ptr;
  38. if(avc && avc->codec && avc->codec->name)
  39. return avc->codec->name;
  40. else
  41. return "NULL";
  42. }
  43. static void *codec_child_next(void *obj, void *prev)
  44. {
  45. AVCodecContext *s = obj;
  46. if (!prev && s->codec && s->codec->priv_class && s->priv_data)
  47. return s->priv_data;
  48. return NULL;
  49. }
  50. static const AVClass *codec_child_class_next(const AVClass *prev)
  51. {
  52. AVCodec *c = NULL;
  53. /* find the codec that corresponds to prev */
  54. while (prev && (c = av_codec_next(c)))
  55. if (c->priv_class == prev)
  56. break;
  57. /* find next codec with priv options */
  58. while (c = av_codec_next(c))
  59. if (c->priv_class)
  60. return c->priv_class;
  61. return NULL;
  62. }
  63. static const AVClass av_codec_context_class = {
  64. .class_name = "AVCodecContext",
  65. .item_name = context_to_name,
  66. .option = avcodec_options,
  67. .version = LIBAVUTIL_VERSION_INT,
  68. .log_level_offset_offset = offsetof(AVCodecContext, log_level_offset),
  69. .child_next = codec_child_next,
  70. .child_class_next = codec_child_class_next,
  71. };
  72. static int init_context_defaults(AVCodecContext *s, const AVCodec *codec)
  73. {
  74. memset(s, 0, sizeof(AVCodecContext));
  75. s->av_class = &av_codec_context_class;
  76. s->codec_type = codec ? codec->type : AVMEDIA_TYPE_UNKNOWN;
  77. s->codec = codec;
  78. av_opt_set_defaults(s);
  79. s->time_base = (AVRational){0,1};
  80. s->framerate = (AVRational){ 0, 1 };
  81. s->get_buffer2 = avcodec_default_get_buffer2;
  82. s->get_format = avcodec_default_get_format;
  83. s->execute = avcodec_default_execute;
  84. s->execute2 = avcodec_default_execute2;
  85. s->sample_aspect_ratio = (AVRational){0,1};
  86. s->pix_fmt = AV_PIX_FMT_NONE;
  87. s->sample_fmt = AV_SAMPLE_FMT_NONE;
  88. s->reordered_opaque = AV_NOPTS_VALUE;
  89. if(codec && codec->priv_data_size){
  90. if(!s->priv_data){
  91. s->priv_data= av_mallocz(codec->priv_data_size);
  92. if (!s->priv_data) {
  93. return AVERROR(ENOMEM);
  94. }
  95. }
  96. if(codec->priv_class){
  97. *(const AVClass**)s->priv_data = codec->priv_class;
  98. av_opt_set_defaults(s->priv_data);
  99. }
  100. }
  101. if (codec && codec->defaults) {
  102. int ret;
  103. const AVCodecDefault *d = codec->defaults;
  104. while (d->key) {
  105. ret = av_opt_set(s, d->key, d->value, 0);
  106. av_assert0(ret >= 0);
  107. d++;
  108. }
  109. }
  110. return 0;
  111. }
  112. #if FF_API_GET_CONTEXT_DEFAULTS
  113. int avcodec_get_context_defaults3(AVCodecContext *s, const AVCodec *codec)
  114. {
  115. return init_context_defaults(s, codec);
  116. }
  117. #endif
  118. AVCodecContext *avcodec_alloc_context3(const AVCodec *codec)
  119. {
  120. AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext));
  121. if (!avctx)
  122. return NULL;
  123. if (init_context_defaults(avctx, codec) < 0) {
  124. av_free(avctx);
  125. return NULL;
  126. }
  127. return avctx;
  128. }
  129. void avcodec_free_context(AVCodecContext **pavctx)
  130. {
  131. AVCodecContext *avctx = *pavctx;
  132. if (!avctx)
  133. return;
  134. avcodec_close(avctx);
  135. av_freep(&avctx->extradata);
  136. av_freep(&avctx->subtitle_header);
  137. av_freep(pavctx);
  138. }
  139. #if FF_API_COPY_CONTEXT
  140. int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src)
  141. {
  142. const AVCodec *orig_codec = dest->codec;
  143. uint8_t *orig_priv_data = dest->priv_data;
  144. if (avcodec_is_open(dest)) { // check that the dest context is uninitialized
  145. av_log(dest, AV_LOG_ERROR,
  146. "Tried to copy AVCodecContext %p into already-initialized %p\n",
  147. src, dest);
  148. return AVERROR(EINVAL);
  149. }
  150. memcpy(dest, src, sizeof(*dest));
  151. dest->priv_data = orig_priv_data;
  152. dest->codec = orig_codec;
  153. /* set values specific to opened codecs back to their default state */
  154. dest->slice_offset = NULL;
  155. dest->hwaccel = NULL;
  156. dest->internal = NULL;
  157. /* reallocate values that should be allocated separately */
  158. dest->extradata = NULL;
  159. dest->intra_matrix = NULL;
  160. dest->inter_matrix = NULL;
  161. dest->rc_override = NULL;
  162. dest->subtitle_header = NULL;
  163. dest->hw_frames_ctx = NULL;
  164. #if FF_API_MPV_OPT
  165. FF_DISABLE_DEPRECATION_WARNINGS
  166. dest->rc_eq = NULL;
  167. if (src->rc_eq) {
  168. dest->rc_eq = av_strdup(src->rc_eq);
  169. if (!dest->rc_eq)
  170. return AVERROR(ENOMEM);
  171. }
  172. FF_ENABLE_DEPRECATION_WARNINGS
  173. #endif
  174. #define alloc_and_copy_or_fail(obj, size, pad) \
  175. if (src->obj && size > 0) { \
  176. dest->obj = av_malloc(size + pad); \
  177. if (!dest->obj) \
  178. goto fail; \
  179. memcpy(dest->obj, src->obj, size); \
  180. if (pad) \
  181. memset(((uint8_t *) dest->obj) + size, 0, pad); \
  182. }
  183. alloc_and_copy_or_fail(extradata, src->extradata_size,
  184. AV_INPUT_BUFFER_PADDING_SIZE);
  185. alloc_and_copy_or_fail(intra_matrix, 64 * sizeof(int16_t), 0);
  186. alloc_and_copy_or_fail(inter_matrix, 64 * sizeof(int16_t), 0);
  187. alloc_and_copy_or_fail(rc_override, src->rc_override_count * sizeof(*src->rc_override), 0);
  188. alloc_and_copy_or_fail(subtitle_header, src->subtitle_header_size, 0);
  189. dest->subtitle_header_size = src->subtitle_header_size;
  190. #undef alloc_and_copy_or_fail
  191. if (src->hw_frames_ctx) {
  192. dest->hw_frames_ctx = av_buffer_ref(src->hw_frames_ctx);
  193. if (!dest->hw_frames_ctx)
  194. goto fail;
  195. }
  196. return 0;
  197. fail:
  198. av_freep(&dest->subtitle_header);
  199. av_freep(&dest->rc_override);
  200. av_freep(&dest->intra_matrix);
  201. av_freep(&dest->inter_matrix);
  202. av_freep(&dest->extradata);
  203. av_buffer_unref(&dest->hw_frames_ctx);
  204. #if FF_API_MPV_OPT
  205. FF_DISABLE_DEPRECATION_WARNINGS
  206. av_freep(&dest->rc_eq);
  207. FF_ENABLE_DEPRECATION_WARNINGS
  208. #endif
  209. return AVERROR(ENOMEM);
  210. }
  211. #endif
  212. const AVClass *avcodec_get_class(void)
  213. {
  214. return &av_codec_context_class;
  215. }