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.

283 lines
9.0KB

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