gstdspmp4venc.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * Copyright (C) 2009-2010 Felipe Contreras
  3. *
  4. * Author: Felipe Contreras <felipe.contreras@gmail.com>
  5. *
  6. * This file may be used under the terms of the GNU Lesser General Public
  7. * License version 2.1, a copy of which is found in LICENSE included in the
  8. * packaging of this file.
  9. */
  10. #include "gstdspmp4venc.h"
  11. #include "plugin.h"
  12. #include "util.h"
  13. #include "dsp_bridge.h"
  14. #include "log.h"
  15. #define GST_CAT_DEFAULT gstdsp_debug
  16. /*
  17. * MPEG4-SP supported levels
  18. * source: ISO/IEC 14496-2:2004/Cor 3:2008
  19. * Level 5 is not the one defined by the standard, this is the default for
  20. * this particular encoder.
  21. */
  22. static struct gstdsp_codec_level levels[] = {
  23. {0, 99, 1485, 64000 }, /* Level 0 - QCIF@15fps */
  24. {0, 99, 1485, 128000 }, /* Level 0b - CIF@15fps */
  25. {1, 99, 1485, 64000 }, /* Level 1 - CIF@30fps */
  26. {2, 396, 5940, 128000 }, /* Level 2 - CIF@30fps */
  27. {3, 396, 11880, 384000 }, /* Level 3 - QCIF@15fps */
  28. {4, 1200, 36000, 4000000 }, /* Level 4a - VGA@30fps */
  29. {5, 1620, 47700, 5000000 }, /* Level 5 - WVGA@30fps */
  30. };
  31. static inline GstCaps *
  32. generate_src_template(void)
  33. {
  34. GstCaps *caps;
  35. GstStructure *struc;
  36. caps = gst_caps_new_empty();
  37. struc = gst_structure_new("video/mpeg",
  38. "mpegversion", G_TYPE_INT, 4,
  39. "systemstream", G_TYPE_BOOLEAN, FALSE,
  40. NULL);
  41. gst_caps_append_structure(caps, struc);
  42. return caps;
  43. }
  44. static void
  45. instance_init(GTypeInstance *instance,
  46. gpointer g_class)
  47. {
  48. GstDspBase *base = GST_DSP_BASE(instance);
  49. GstDspVEnc *self = GST_DSP_VENC(instance);
  50. base->alg = GSTDSP_MP4VENC;
  51. base->codec = &td_mp4venc_codec;
  52. self->supported_levels = levels;
  53. self->nr_supported_levels = ARRAY_SIZE(levels);
  54. base->use_pinned = true;
  55. }
  56. static void
  57. base_init(gpointer g_class)
  58. {
  59. GstElementClass *element_class;
  60. GstPadTemplate *template;
  61. element_class = GST_ELEMENT_CLASS(g_class);
  62. gst_element_class_set_details_simple(element_class,
  63. "DSP MPEG-4 video encoder",
  64. "Codec/Encoder/Video",
  65. "Encodes MPEG-4 video with TI's DSP algorithms",
  66. "Felipe Contreras");
  67. template = gst_pad_template_new("src", GST_PAD_SRC,
  68. GST_PAD_ALWAYS,
  69. generate_src_template());
  70. gst_element_class_add_pad_template(element_class, template);
  71. gst_object_unref(template);
  72. }
  73. GType
  74. gst_dsp_mp4venc_get_type(void)
  75. {
  76. static GType type;
  77. if (G_UNLIKELY(type == 0)) {
  78. GTypeInfo type_info = {
  79. .class_size = sizeof(GstDspMp4VEncClass),
  80. .base_init = base_init,
  81. .instance_size = sizeof(GstDspMp4VEnc),
  82. .instance_init = instance_init,
  83. };
  84. type = g_type_register_static(GST_DSP_VENC_TYPE, "GstDspMp4VEnc", &type_info, 0);
  85. }
  86. return type;
  87. }