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.

305 lines
9.6KB

  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/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 AVClassCategory get_category(void *ptr)
  62. {
  63. AVCodecContext* avctx = ptr;
  64. if(avctx->codec && avctx->codec->decode) return AV_CLASS_CATEGORY_DECODER;
  65. else return AV_CLASS_CATEGORY_ENCODER;
  66. }
  67. static const AVClass av_codec_context_class = {
  68. .class_name = "AVCodecContext",
  69. .item_name = context_to_name,
  70. .option = avcodec_options,
  71. .version = LIBAVUTIL_VERSION_INT,
  72. .log_level_offset_offset = offsetof(AVCodecContext, log_level_offset),
  73. .child_next = codec_child_next,
  74. .child_class_next = codec_child_class_next,
  75. .category = AV_CLASS_CATEGORY_ENCODER,
  76. .get_category = get_category,
  77. };
  78. int avcodec_get_context_defaults3(AVCodecContext *s, const AVCodec *codec)
  79. {
  80. int flags=0;
  81. memset(s, 0, sizeof(AVCodecContext));
  82. s->av_class = &av_codec_context_class;
  83. s->codec_type = codec ? codec->type : AVMEDIA_TYPE_UNKNOWN;
  84. if (codec) {
  85. s->codec = codec;
  86. s->codec_id = codec->id;
  87. }
  88. if(s->codec_type == AVMEDIA_TYPE_AUDIO)
  89. flags= AV_OPT_FLAG_AUDIO_PARAM;
  90. else if(s->codec_type == AVMEDIA_TYPE_VIDEO)
  91. flags= AV_OPT_FLAG_VIDEO_PARAM;
  92. else if(s->codec_type == AVMEDIA_TYPE_SUBTITLE)
  93. flags= AV_OPT_FLAG_SUBTITLE_PARAM;
  94. av_opt_set_defaults2(s, flags, flags);
  95. s->time_base = (AVRational){0,1};
  96. s->framerate = (AVRational){ 0, 1 };
  97. s->pkt_timebase = (AVRational){ 0, 1 };
  98. s->get_buffer2 = avcodec_default_get_buffer2;
  99. s->get_format = avcodec_default_get_format;
  100. s->execute = avcodec_default_execute;
  101. s->execute2 = avcodec_default_execute2;
  102. s->sample_aspect_ratio = (AVRational){0,1};
  103. s->pix_fmt = AV_PIX_FMT_NONE;
  104. s->sample_fmt = AV_SAMPLE_FMT_NONE;
  105. s->reordered_opaque = AV_NOPTS_VALUE;
  106. if(codec && codec->priv_data_size){
  107. if(!s->priv_data){
  108. s->priv_data= av_mallocz(codec->priv_data_size);
  109. if (!s->priv_data) {
  110. return AVERROR(ENOMEM);
  111. }
  112. }
  113. if(codec->priv_class){
  114. *(const AVClass**)s->priv_data = codec->priv_class;
  115. av_opt_set_defaults(s->priv_data);
  116. }
  117. }
  118. if (codec && codec->defaults) {
  119. int ret;
  120. const AVCodecDefault *d = codec->defaults;
  121. while (d->key) {
  122. ret = av_opt_set(s, d->key, d->value, 0);
  123. av_assert0(ret >= 0);
  124. d++;
  125. }
  126. }
  127. return 0;
  128. }
  129. AVCodecContext *avcodec_alloc_context3(const AVCodec *codec)
  130. {
  131. AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext));
  132. if (!avctx)
  133. return NULL;
  134. if(avcodec_get_context_defaults3(avctx, codec) < 0){
  135. av_free(avctx);
  136. return NULL;
  137. }
  138. return avctx;
  139. }
  140. void avcodec_free_context(AVCodecContext **pavctx)
  141. {
  142. AVCodecContext *avctx = *pavctx;
  143. if (!avctx)
  144. return;
  145. avcodec_close(avctx);
  146. av_freep(&avctx->extradata);
  147. av_freep(&avctx->subtitle_header);
  148. av_freep(&avctx->intra_matrix);
  149. av_freep(&avctx->inter_matrix);
  150. av_freep(&avctx->rc_override);
  151. av_freep(pavctx);
  152. }
  153. int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src)
  154. {
  155. const AVCodec *orig_codec = dest->codec;
  156. uint8_t *orig_priv_data = dest->priv_data;
  157. if (avcodec_is_open(dest)) { // check that the dest context is uninitialized
  158. av_log(dest, AV_LOG_ERROR,
  159. "Tried to copy AVCodecContext %p into already-initialized %p\n",
  160. src, dest);
  161. return AVERROR(EINVAL);
  162. }
  163. av_opt_free(dest);
  164. memcpy(dest, src, sizeof(*dest));
  165. av_opt_copy(dest, src);
  166. dest->priv_data = orig_priv_data;
  167. if (orig_priv_data)
  168. av_opt_copy(orig_priv_data, src->priv_data);
  169. dest->codec = orig_codec;
  170. /* set values specific to opened codecs back to their default state */
  171. dest->slice_offset = NULL;
  172. dest->hwaccel = NULL;
  173. dest->internal = NULL;
  174. /* reallocate values that should be allocated separately */
  175. dest->extradata = NULL;
  176. dest->intra_matrix = NULL;
  177. dest->inter_matrix = NULL;
  178. dest->rc_override = NULL;
  179. dest->subtitle_header = NULL;
  180. #define alloc_and_copy_or_fail(obj, size, pad) \
  181. if (src->obj && size > 0) { \
  182. dest->obj = av_malloc(size + pad); \
  183. if (!dest->obj) \
  184. goto fail; \
  185. memcpy(dest->obj, src->obj, size); \
  186. if (pad) \
  187. memset(((uint8_t *) dest->obj) + size, 0, pad); \
  188. }
  189. alloc_and_copy_or_fail(extradata, src->extradata_size,
  190. FF_INPUT_BUFFER_PADDING_SIZE);
  191. alloc_and_copy_or_fail(intra_matrix, 64 * sizeof(int16_t), 0);
  192. alloc_and_copy_or_fail(inter_matrix, 64 * sizeof(int16_t), 0);
  193. alloc_and_copy_or_fail(rc_override, src->rc_override_count * sizeof(*src->rc_override), 0);
  194. alloc_and_copy_or_fail(subtitle_header, src->subtitle_header_size, 1);
  195. av_assert0(dest->subtitle_header_size == src->subtitle_header_size);
  196. #undef alloc_and_copy_or_fail
  197. return 0;
  198. fail:
  199. av_freep(&dest->rc_override);
  200. av_freep(&dest->intra_matrix);
  201. av_freep(&dest->inter_matrix);
  202. av_freep(&dest->extradata);
  203. #if FF_API_MPV_OPT
  204. FF_DISABLE_DEPRECATION_WARNINGS
  205. av_freep(&dest->rc_eq);
  206. FF_ENABLE_DEPRECATION_WARNINGS
  207. #endif
  208. return AVERROR(ENOMEM);
  209. }
  210. const AVClass *avcodec_get_class(void)
  211. {
  212. return &av_codec_context_class;
  213. }
  214. #define FOFFSET(x) offsetof(AVFrame,x)
  215. static const AVOption frame_options[]={
  216. {"best_effort_timestamp", "", FOFFSET(best_effort_timestamp), AV_OPT_TYPE_INT64, {.i64 = AV_NOPTS_VALUE }, INT64_MIN, INT64_MAX, 0},
  217. {"pkt_pos", "", FOFFSET(pkt_pos), AV_OPT_TYPE_INT64, {.i64 = -1 }, INT64_MIN, INT64_MAX, 0},
  218. {"pkt_size", "", FOFFSET(pkt_size), AV_OPT_TYPE_INT64, {.i64 = -1 }, INT64_MIN, INT64_MAX, 0},
  219. {"sample_aspect_ratio", "", FOFFSET(sample_aspect_ratio), AV_OPT_TYPE_RATIONAL, {.dbl = 0 }, 0, INT_MAX, 0},
  220. {"width", "", FOFFSET(width), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  221. {"height", "", FOFFSET(height), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  222. {"format", "", FOFFSET(format), AV_OPT_TYPE_INT, {.i64 = -1 }, 0, INT_MAX, 0},
  223. {"channel_layout", "", FOFFSET(channel_layout), AV_OPT_TYPE_INT64, {.i64 = 0 }, 0, INT64_MAX, 0},
  224. {"sample_rate", "", FOFFSET(sample_rate), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  225. {NULL},
  226. };
  227. static const AVClass av_frame_class = {
  228. .class_name = "AVFrame",
  229. .item_name = NULL,
  230. .option = frame_options,
  231. .version = LIBAVUTIL_VERSION_INT,
  232. };
  233. const AVClass *avcodec_get_frame_class(void)
  234. {
  235. return &av_frame_class;
  236. }
  237. #define SROFFSET(x) offsetof(AVSubtitleRect,x)
  238. static const AVOption subtitle_rect_options[]={
  239. {"x", "", SROFFSET(x), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  240. {"y", "", SROFFSET(y), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  241. {"w", "", SROFFSET(w), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  242. {"h", "", SROFFSET(h), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  243. {"type", "", SROFFSET(type), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
  244. {"flags", "", SROFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, 0, 1, 0, "flags"},
  245. {"forced", "", SROFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, 0, 1, 0},
  246. {NULL},
  247. };
  248. static const AVClass av_subtitle_rect_class = {
  249. .class_name = "AVSubtitleRect",
  250. .item_name = NULL,
  251. .option = subtitle_rect_options,
  252. .version = LIBAVUTIL_VERSION_INT,
  253. };
  254. const AVClass *avcodec_get_subtitle_rect_class(void)
  255. {
  256. return &av_subtitle_rect_class;
  257. }