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.

231 lines
6.7KB

  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. #include "options_table.h"
  34. static const char* context_to_name(void* ptr) {
  35. AVCodecContext *avc= ptr;
  36. if(avc && avc->codec && avc->codec->name)
  37. return avc->codec->name;
  38. else
  39. return "NULL";
  40. }
  41. static void *codec_child_next(void *obj, void *prev)
  42. {
  43. AVCodecContext *s = obj;
  44. if (!prev && s->codec && s->codec->priv_class && s->priv_data)
  45. return s->priv_data;
  46. return NULL;
  47. }
  48. static const AVClass *codec_child_class_next(const AVClass *prev)
  49. {
  50. AVCodec *c = NULL;
  51. /* find the codec that corresponds to prev */
  52. while (prev && (c = av_codec_next(c)))
  53. if (c->priv_class == prev)
  54. break;
  55. /* find next codec with priv options */
  56. while (c = av_codec_next(c))
  57. if (c->priv_class)
  58. return c->priv_class;
  59. return NULL;
  60. }
  61. static const AVClass av_codec_context_class = {
  62. .class_name = "AVCodecContext",
  63. .item_name = context_to_name,
  64. .option = avcodec_options,
  65. .version = LIBAVUTIL_VERSION_INT,
  66. .log_level_offset_offset = offsetof(AVCodecContext, log_level_offset),
  67. .child_next = codec_child_next,
  68. .child_class_next = codec_child_class_next,
  69. };
  70. int avcodec_get_context_defaults3(AVCodecContext *s, const AVCodec *codec)
  71. {
  72. memset(s, 0, sizeof(AVCodecContext));
  73. s->av_class = &av_codec_context_class;
  74. s->codec_type = codec ? codec->type : AVMEDIA_TYPE_UNKNOWN;
  75. s->codec = codec;
  76. av_opt_set_defaults(s);
  77. s->time_base = (AVRational){0,1};
  78. s->framerate = (AVRational){ 0, 1 };
  79. s->get_buffer2 = avcodec_default_get_buffer2;
  80. s->get_format = avcodec_default_get_format;
  81. s->execute = avcodec_default_execute;
  82. s->execute2 = avcodec_default_execute2;
  83. s->sample_aspect_ratio = (AVRational){0,1};
  84. s->pix_fmt = AV_PIX_FMT_NONE;
  85. s->sample_fmt = AV_SAMPLE_FMT_NONE;
  86. s->reordered_opaque = AV_NOPTS_VALUE;
  87. if(codec && codec->priv_data_size){
  88. if(!s->priv_data){
  89. s->priv_data= av_mallocz(codec->priv_data_size);
  90. if (!s->priv_data) {
  91. return AVERROR(ENOMEM);
  92. }
  93. }
  94. if(codec->priv_class){
  95. *(const AVClass**)s->priv_data = codec->priv_class;
  96. av_opt_set_defaults(s->priv_data);
  97. }
  98. }
  99. if (codec && codec->defaults) {
  100. int ret;
  101. const AVCodecDefault *d = codec->defaults;
  102. while (d->key) {
  103. ret = av_opt_set(s, d->key, d->value, 0);
  104. av_assert0(ret >= 0);
  105. d++;
  106. }
  107. }
  108. return 0;
  109. }
  110. AVCodecContext *avcodec_alloc_context3(const AVCodec *codec)
  111. {
  112. AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext));
  113. if (!avctx)
  114. return NULL;
  115. if(avcodec_get_context_defaults3(avctx, codec) < 0){
  116. av_free(avctx);
  117. return NULL;
  118. }
  119. return avctx;
  120. }
  121. void avcodec_free_context(AVCodecContext **pavctx)
  122. {
  123. AVCodecContext *avctx = *pavctx;
  124. if (!avctx)
  125. return;
  126. avcodec_close(avctx);
  127. av_freep(&avctx->extradata);
  128. av_freep(&avctx->subtitle_header);
  129. av_freep(pavctx);
  130. }
  131. int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src)
  132. {
  133. const AVCodec *orig_codec = dest->codec;
  134. uint8_t *orig_priv_data = dest->priv_data;
  135. if (avcodec_is_open(dest)) { // check that the dest context is uninitialized
  136. av_log(dest, AV_LOG_ERROR,
  137. "Tried to copy AVCodecContext %p into already-initialized %p\n",
  138. src, dest);
  139. return AVERROR(EINVAL);
  140. }
  141. memcpy(dest, src, sizeof(*dest));
  142. dest->priv_data = orig_priv_data;
  143. dest->codec = orig_codec;
  144. /* set values specific to opened codecs back to their default state */
  145. dest->slice_offset = NULL;
  146. dest->hwaccel = NULL;
  147. dest->internal = NULL;
  148. /* reallocate values that should be allocated separately */
  149. dest->extradata = NULL;
  150. dest->intra_matrix = NULL;
  151. dest->inter_matrix = NULL;
  152. dest->rc_override = NULL;
  153. dest->subtitle_header = NULL;
  154. #if FF_API_MPV_OPT
  155. FF_DISABLE_DEPRECATION_WARNINGS
  156. dest->rc_eq = NULL;
  157. if (src->rc_eq) {
  158. dest->rc_eq = av_strdup(src->rc_eq);
  159. if (!dest->rc_eq)
  160. return AVERROR(ENOMEM);
  161. }
  162. FF_ENABLE_DEPRECATION_WARNINGS
  163. #endif
  164. #define alloc_and_copy_or_fail(obj, size, pad) \
  165. if (src->obj && size > 0) { \
  166. dest->obj = av_malloc(size + pad); \
  167. if (!dest->obj) \
  168. goto fail; \
  169. memcpy(dest->obj, src->obj, size); \
  170. if (pad) \
  171. memset(((uint8_t *) dest->obj) + size, 0, pad); \
  172. }
  173. alloc_and_copy_or_fail(extradata, src->extradata_size,
  174. FF_INPUT_BUFFER_PADDING_SIZE);
  175. alloc_and_copy_or_fail(intra_matrix, 64 * sizeof(int16_t), 0);
  176. alloc_and_copy_or_fail(inter_matrix, 64 * sizeof(int16_t), 0);
  177. alloc_and_copy_or_fail(rc_override, src->rc_override_count * sizeof(*src->rc_override), 0);
  178. alloc_and_copy_or_fail(subtitle_header, src->subtitle_header_size, 0);
  179. dest->subtitle_header_size = src->subtitle_header_size;
  180. #undef alloc_and_copy_or_fail
  181. return 0;
  182. fail:
  183. av_freep(&dest->rc_override);
  184. av_freep(&dest->intra_matrix);
  185. av_freep(&dest->inter_matrix);
  186. av_freep(&dest->extradata);
  187. #if FF_API_MPV_OPT
  188. FF_DISABLE_DEPRECATION_WARNINGS
  189. av_freep(&dest->rc_eq);
  190. FF_ENABLE_DEPRECATION_WARNINGS
  191. #endif
  192. return AVERROR(ENOMEM);
  193. }
  194. const AVClass *avcodec_get_class(void)
  195. {
  196. return &av_codec_context_class;
  197. }