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.

275 lines
8.9KB

  1. /*
  2. * Copyright (c) 2001 Fabrice Bellard
  3. * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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/mem.h"
  29. #include "libavutil/opt.h"
  30. #include <float.h> /* FLT_MIN, FLT_MAX */
  31. #include <string.h>
  32. #include "options_table.h"
  33. static const char* context_to_name(void* ptr) {
  34. AVCodecContext *avc= ptr;
  35. if(avc && avc->codec && avc->codec->name)
  36. return avc->codec->name;
  37. else
  38. return "NULL";
  39. }
  40. static void *codec_child_next(void *obj, void *prev)
  41. {
  42. AVCodecContext *s = obj;
  43. if (!prev && s->codec && s->codec->priv_class && s->priv_data)
  44. return s->priv_data;
  45. return NULL;
  46. }
  47. static const AVClass *codec_child_class_next(const AVClass *prev)
  48. {
  49. AVCodec *c = NULL;
  50. /* find the codec that corresponds to prev */
  51. while (prev && (c = av_codec_next(c)))
  52. if (c->priv_class == prev)
  53. break;
  54. /* find next codec with priv options */
  55. while (c = av_codec_next(c))
  56. if (c->priv_class)
  57. return c->priv_class;
  58. return NULL;
  59. }
  60. static AVClassCategory get_category(void *ptr)
  61. {
  62. AVCodecContext* avctx = ptr;
  63. if(avctx->codec && avctx->codec->decode) return AV_CLASS_CATEGORY_DECODER;
  64. else return AV_CLASS_CATEGORY_ENCODER;
  65. }
  66. static const AVClass av_codec_context_class = {
  67. .class_name = "AVCodecContext",
  68. .item_name = context_to_name,
  69. .option = avcodec_options,
  70. .version = LIBAVUTIL_VERSION_INT,
  71. .log_level_offset_offset = offsetof(AVCodecContext, log_level_offset),
  72. .child_next = codec_child_next,
  73. .child_class_next = codec_child_class_next,
  74. .category = AV_CLASS_CATEGORY_ENCODER,
  75. .get_category = get_category,
  76. };
  77. int avcodec_get_context_defaults3(AVCodecContext *s, const AVCodec *codec)
  78. {
  79. int flags=0;
  80. memset(s, 0, sizeof(AVCodecContext));
  81. s->av_class = &av_codec_context_class;
  82. s->codec_type = codec ? codec->type : AVMEDIA_TYPE_UNKNOWN;
  83. if (codec)
  84. s->codec_id = codec->id;
  85. if(s->codec_type == AVMEDIA_TYPE_AUDIO)
  86. flags= AV_OPT_FLAG_AUDIO_PARAM;
  87. else if(s->codec_type == AVMEDIA_TYPE_VIDEO)
  88. flags= AV_OPT_FLAG_VIDEO_PARAM;
  89. else if(s->codec_type == AVMEDIA_TYPE_SUBTITLE)
  90. flags= AV_OPT_FLAG_SUBTITLE_PARAM;
  91. av_opt_set_defaults2(s, flags, flags);
  92. s->time_base = (AVRational){0,1};
  93. s->get_buffer2 = avcodec_default_get_buffer2;
  94. s->get_format = avcodec_default_get_format;
  95. s->execute = avcodec_default_execute;
  96. s->execute2 = avcodec_default_execute2;
  97. s->sample_aspect_ratio = (AVRational){0,1};
  98. s->pix_fmt = AV_PIX_FMT_NONE;
  99. s->sample_fmt = AV_SAMPLE_FMT_NONE;
  100. s->timecode_frame_start = -1;
  101. s->reordered_opaque = AV_NOPTS_VALUE;
  102. if(codec && codec->priv_data_size){
  103. if(!s->priv_data){
  104. s->priv_data= av_mallocz(codec->priv_data_size);
  105. if (!s->priv_data) {
  106. return AVERROR(ENOMEM);
  107. }
  108. }
  109. if(codec->priv_class){
  110. *(const AVClass**)s->priv_data = codec->priv_class;
  111. av_opt_set_defaults(s->priv_data);
  112. }
  113. }
  114. if (codec && codec->defaults) {
  115. int ret;
  116. const AVCodecDefault *d = codec->defaults;
  117. while (d->key) {
  118. ret = av_opt_set(s, d->key, d->value, 0);
  119. av_assert0(ret >= 0);
  120. d++;
  121. }
  122. }
  123. return 0;
  124. }
  125. AVCodecContext *avcodec_alloc_context3(const AVCodec *codec)
  126. {
  127. AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext));
  128. if(avctx==NULL) return NULL;
  129. if(avcodec_get_context_defaults3(avctx, codec) < 0){
  130. av_free(avctx);
  131. return NULL;
  132. }
  133. return avctx;
  134. }
  135. int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src)
  136. {
  137. if (avcodec_is_open(dest)) { // check that the dest context is uninitialized
  138. av_log(dest, AV_LOG_ERROR,
  139. "Tried to copy AVCodecContext %p into already-initialized %p\n",
  140. src, dest);
  141. return AVERROR(EINVAL);
  142. }
  143. av_opt_free(dest);
  144. av_free(dest->priv_data);
  145. memcpy(dest, src, sizeof(*dest));
  146. /* set values specific to opened codecs back to their default state */
  147. dest->priv_data = NULL;
  148. dest->codec = NULL;
  149. dest->slice_offset = NULL;
  150. dest->hwaccel = NULL;
  151. dest->thread_opaque = NULL;
  152. dest->internal = NULL;
  153. /* reallocate values that should be allocated separately */
  154. dest->rc_eq = NULL;
  155. dest->extradata = NULL;
  156. dest->intra_matrix = NULL;
  157. dest->inter_matrix = NULL;
  158. dest->rc_override = NULL;
  159. if (src->rc_eq) {
  160. dest->rc_eq = av_strdup(src->rc_eq);
  161. if (!dest->rc_eq)
  162. return AVERROR(ENOMEM);
  163. }
  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, 1);
  179. #undef alloc_and_copy_or_fail
  180. return 0;
  181. fail:
  182. av_freep(&dest->rc_override);
  183. av_freep(&dest->intra_matrix);
  184. av_freep(&dest->inter_matrix);
  185. av_freep(&dest->extradata);
  186. av_freep(&dest->rc_eq);
  187. return AVERROR(ENOMEM);
  188. }
  189. const AVClass *avcodec_get_class(void)
  190. {
  191. return &av_codec_context_class;
  192. }
  193. #define FOFFSET(x) offsetof(AVFrame,x)
  194. static const AVOption frame_options[]={
  195. {"best_effort_timestamp", "", FOFFSET(best_effort_timestamp), AV_OPT_TYPE_INT64, {.i64 = AV_NOPTS_VALUE }, INT64_MIN, INT64_MAX, 0},
  196. {"pkt_pos", "", FOFFSET(pkt_pos), AV_OPT_TYPE_INT64, {.i64 = -1 }, INT64_MIN, INT64_MAX, 0},
  197. {"pkt_size", "", FOFFSET(pkt_size), AV_OPT_TYPE_INT64, {.i64 = -1 }, INT64_MIN, INT64_MAX, 0},
  198. {"sample_aspect_ratio", "", FOFFSET(sample_aspect_ratio), AV_OPT_TYPE_RATIONAL, {.dbl = 0 }, 0, INT_MAX, 0},
  199. {"width", "", FOFFSET(width), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  200. {"height", "", FOFFSET(height), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  201. {"format", "", FOFFSET(format), AV_OPT_TYPE_INT, {.i64 = -1 }, 0, INT_MAX, 0},
  202. {"channel_layout", "", FOFFSET(channel_layout), AV_OPT_TYPE_INT64, {.i64 = 0 }, 0, INT64_MAX, 0},
  203. {"sample_rate", "", FOFFSET(sample_rate), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  204. {NULL},
  205. };
  206. static const AVClass av_frame_class = {
  207. .class_name = "AVFrame",
  208. .item_name = NULL,
  209. .option = frame_options,
  210. .version = LIBAVUTIL_VERSION_INT,
  211. };
  212. const AVClass *avcodec_get_frame_class(void)
  213. {
  214. return &av_frame_class;
  215. }
  216. #define SROFFSET(x) offsetof(AVSubtitleRect,x)
  217. static const AVOption subtitle_rect_options[]={
  218. {"x", "", SROFFSET(x), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  219. {"y", "", SROFFSET(y), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  220. {"w", "", SROFFSET(w), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  221. {"h", "", SROFFSET(h), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  222. {"type", "", SROFFSET(type), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  223. {"flags", "", SROFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, 0, 1, 0, "flags"},
  224. {"forced", "", SROFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, 0, 1, 0},
  225. {NULL},
  226. };
  227. static const AVClass av_subtitle_rect_class = {
  228. .class_name = "AVSubtitleRect",
  229. .item_name = NULL,
  230. .option = subtitle_rect_options,
  231. .version = LIBAVUTIL_VERSION_INT,
  232. };
  233. const AVClass *avcodec_get_subtitle_rect_class(void)
  234. {
  235. return &av_subtitle_rect_class;
  236. }