2011-07-25 09:32:51 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011, Hewlett-Packard Development Company, L.P.
|
|
|
|
* Author: Sebastian Dröge <sebastian.droege@collabora.co.uk>, Collabora Ltd.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation
|
|
|
|
* version 2.1 of the License.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
#include "gstomxh264enc.h"
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_omx_h264_enc_debug_category);
|
|
|
|
#define GST_CAT_DEFAULT gst_omx_h264_enc_debug_category
|
|
|
|
|
|
|
|
/* prototypes */
|
|
|
|
static gboolean gst_omx_h264_enc_set_format (GstOMXVideoEnc * enc,
|
2012-06-20 12:11:58 +00:00
|
|
|
GstOMXPort * port, GstVideoCodecState * state);
|
2011-07-25 09:32:51 +00:00
|
|
|
static GstCaps *gst_omx_h264_enc_get_caps (GstOMXVideoEnc * enc,
|
2012-06-20 12:11:58 +00:00
|
|
|
GstOMXPort * port, GstVideoCodecState * state);
|
2011-11-15 16:40:07 +00:00
|
|
|
static GstFlowReturn gst_omx_h264_enc_handle_output_frame (GstOMXVideoEnc *
|
2012-06-20 12:11:58 +00:00
|
|
|
self, GstOMXPort * port, GstOMXBuffer * buf, GstVideoCodecFrame * frame);
|
2011-07-25 09:32:51 +00:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0
|
|
|
|
};
|
|
|
|
|
|
|
|
/* class initialization */
|
|
|
|
|
2012-04-12 19:57:32 +00:00
|
|
|
#define DEBUG_INIT \
|
2011-07-25 09:32:51 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_omx_h264_enc_debug_category, "omxh264enc", 0, \
|
|
|
|
"debug category for gst-omx video encoder base class");
|
|
|
|
|
2012-04-12 19:57:32 +00:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (GstOMXH264Enc, gst_omx_h264_enc,
|
|
|
|
GST_TYPE_OMX_VIDEO_ENC, DEBUG_INIT);
|
2011-07-25 09:32:51 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gst_omx_h264_enc_class_init (GstOMXH264EncClass * klass)
|
|
|
|
{
|
2012-04-12 19:57:32 +00:00
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
2011-07-25 09:32:51 +00:00
|
|
|
GstOMXVideoEncClass *videoenc_class = GST_OMX_VIDEO_ENC_CLASS (klass);
|
|
|
|
|
|
|
|
videoenc_class->set_format = GST_DEBUG_FUNCPTR (gst_omx_h264_enc_set_format);
|
|
|
|
videoenc_class->get_caps = GST_DEBUG_FUNCPTR (gst_omx_h264_enc_get_caps);
|
|
|
|
|
2012-04-12 19:57:32 +00:00
|
|
|
videoenc_class->cdata.default_src_template_caps = "video/x-h264, "
|
2011-07-25 09:32:51 +00:00
|
|
|
"width=(int) [ 16, 4096 ], " "height=(int) [ 16, 4096 ]";
|
2011-11-15 16:40:07 +00:00
|
|
|
videoenc_class->handle_output_frame =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_omx_h264_enc_handle_output_frame);
|
2011-07-25 09:32:51 +00:00
|
|
|
|
2012-10-17 16:57:43 +00:00
|
|
|
gst_element_class_set_static_metadata (element_class,
|
2012-04-12 19:57:32 +00:00
|
|
|
"OpenMAX H.264 Video Encoder",
|
|
|
|
"Codec/Encoder/Video",
|
|
|
|
"Encode H.264 video streams",
|
|
|
|
"Sebastian Dröge <sebastian.droege@collabora.co.uk>");
|
|
|
|
|
|
|
|
gst_omx_set_default_role (&videoenc_class->cdata, "video_encoder.avc");
|
2011-07-25 09:32:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-04-12 19:57:32 +00:00
|
|
|
gst_omx_h264_enc_init (GstOMXH264Enc * self)
|
2011-07-25 09:32:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_omx_h264_enc_set_format (GstOMXVideoEnc * enc, GstOMXPort * port,
|
2012-06-20 12:11:58 +00:00
|
|
|
GstVideoCodecState * state)
|
2011-07-25 09:32:51 +00:00
|
|
|
{
|
2011-07-28 12:14:45 +00:00
|
|
|
GstOMXH264Enc *self = GST_OMX_H264_ENC (enc);
|
|
|
|
GstCaps *peercaps;
|
2013-03-01 11:18:08 +00:00
|
|
|
OMX_PARAM_PORTDEFINITIONTYPE port_def;
|
2011-08-02 13:14:37 +00:00
|
|
|
OMX_VIDEO_PARAM_PROFILELEVELTYPE param;
|
|
|
|
OMX_ERRORTYPE err;
|
2012-04-12 19:57:32 +00:00
|
|
|
const gchar *profile_string, *level_string;
|
2011-07-28 12:14:45 +00:00
|
|
|
|
2013-03-01 11:23:54 +00:00
|
|
|
gst_omx_port_get_port_definition (GST_OMX_VIDEO_ENC (self)->enc_out_port,
|
|
|
|
&port_def);
|
2013-03-01 11:18:08 +00:00
|
|
|
port_def.format.video.eCompressionFormat = OMX_VIDEO_CodingAVC;
|
2013-03-01 11:23:54 +00:00
|
|
|
err =
|
|
|
|
gst_omx_port_update_port_definition (GST_OMX_VIDEO_ENC
|
|
|
|
(self)->enc_out_port, &port_def);
|
2013-03-01 11:18:08 +00:00
|
|
|
if (err != OMX_ErrorNone)
|
|
|
|
return FALSE;
|
|
|
|
|
2013-03-11 12:49:38 +00:00
|
|
|
GST_OMX_INIT_STRUCT (¶m);
|
|
|
|
param.nPortIndex = GST_OMX_VIDEO_ENC (self)->enc_out_port->index;
|
|
|
|
|
|
|
|
err =
|
|
|
|
gst_omx_component_get_parameter (GST_OMX_VIDEO_ENC (self)->enc,
|
|
|
|
OMX_IndexParamVideoProfileLevelCurrent, ¶m);
|
|
|
|
if (err != OMX_ErrorNone) {
|
|
|
|
GST_WARNING_OBJECT (self,
|
|
|
|
"Setting profile/level not supported by component");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-06-20 12:11:58 +00:00
|
|
|
peercaps = gst_pad_peer_query_caps (GST_VIDEO_ENCODER_SRC_PAD (enc),
|
|
|
|
gst_pad_get_pad_template_caps (GST_VIDEO_ENCODER_SRC_PAD (enc)));
|
2011-07-28 12:14:45 +00:00
|
|
|
if (peercaps) {
|
|
|
|
GstStructure *s;
|
|
|
|
|
2012-04-12 19:57:32 +00:00
|
|
|
if (gst_caps_is_empty (peercaps)) {
|
|
|
|
gst_caps_unref (peercaps);
|
2011-07-28 12:14:45 +00:00
|
|
|
GST_ERROR_OBJECT (self, "Empty caps");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-04-12 19:57:32 +00:00
|
|
|
s = gst_caps_get_structure (peercaps, 0);
|
2011-07-28 12:14:45 +00:00
|
|
|
profile_string = gst_structure_get_string (s, "profile");
|
|
|
|
if (profile_string) {
|
|
|
|
if (g_str_equal (profile_string, "baseline")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eProfile = OMX_VIDEO_AVCProfileBaseline;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (profile_string, "main")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eProfile = OMX_VIDEO_AVCProfileMain;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (profile_string, "extended")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eProfile = OMX_VIDEO_AVCProfileExtended;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (profile_string, "high")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eProfile = OMX_VIDEO_AVCProfileHigh;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (profile_string, "high-10")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eProfile = OMX_VIDEO_AVCProfileHigh10;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (profile_string, "high-4:2:2")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eProfile = OMX_VIDEO_AVCProfileHigh422;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (profile_string, "high-4:4:4")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eProfile = OMX_VIDEO_AVCProfileHigh444;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else {
|
2012-04-12 19:57:32 +00:00
|
|
|
goto unsupported_profile;
|
2011-07-28 12:14:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
level_string = gst_structure_get_string (s, "level");
|
|
|
|
if (level_string) {
|
|
|
|
if (g_str_equal (level_string, "1")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel1;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (level_string, "1b")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel1b;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (level_string, "1.1")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel11;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (level_string, "1.2")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel12;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (level_string, "1.3")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel13;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (level_string, "2")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel2;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (level_string, "2.1")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel21;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (level_string, "2.2")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel22;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (level_string, "3")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel3;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (level_string, "3.1")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel31;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (level_string, "3.2")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel32;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (level_string, "4")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel4;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (level_string, "4.1")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel41;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (level_string, "4.2")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel42;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (level_string, "5")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel5;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else if (g_str_equal (level_string, "5.1")) {
|
2013-03-11 12:49:38 +00:00
|
|
|
param.eLevel = OMX_VIDEO_AVCLevel51;
|
2011-07-28 12:14:45 +00:00
|
|
|
} else {
|
2012-04-12 19:57:32 +00:00
|
|
|
goto unsupported_level;
|
2011-07-28 12:14:45 +00:00
|
|
|
}
|
|
|
|
}
|
2012-04-12 19:57:32 +00:00
|
|
|
gst_caps_unref (peercaps);
|
2011-08-02 13:14:37 +00:00
|
|
|
}
|
2011-07-28 12:14:45 +00:00
|
|
|
|
2011-08-02 13:14:37 +00:00
|
|
|
err =
|
2013-02-25 08:15:46 +00:00
|
|
|
gst_omx_component_set_parameter (GST_OMX_VIDEO_ENC (self)->enc,
|
2011-08-02 13:14:37 +00:00
|
|
|
OMX_IndexParamVideoProfileLevelCurrent, ¶m);
|
|
|
|
if (err == OMX_ErrorUnsupportedIndex) {
|
|
|
|
GST_WARNING_OBJECT (self,
|
|
|
|
"Setting profile/level not supported by component");
|
|
|
|
} else if (err != OMX_ErrorNone) {
|
|
|
|
GST_ERROR_OBJECT (self,
|
2013-03-11 12:49:38 +00:00
|
|
|
"Error setting profile %d and level %d: %s (0x%08x)", param.eProfile,
|
|
|
|
param.eLevel, gst_omx_error_to_string (err), err);
|
2011-08-02 13:14:37 +00:00
|
|
|
return FALSE;
|
2011-07-28 12:14:45 +00:00
|
|
|
}
|
|
|
|
|
2011-07-25 09:32:51 +00:00
|
|
|
return TRUE;
|
2012-04-12 19:57:32 +00:00
|
|
|
|
|
|
|
unsupported_profile:
|
|
|
|
GST_ERROR_OBJECT (self, "Unsupported profile %s", profile_string);
|
2013-03-14 14:03:02 +00:00
|
|
|
gst_caps_unref (peercaps);
|
2012-04-12 19:57:32 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
unsupported_level:
|
|
|
|
GST_ERROR_OBJECT (self, "Unsupported level %s", level_string);
|
2013-03-14 14:03:02 +00:00
|
|
|
gst_caps_unref (peercaps);
|
2012-04-12 19:57:32 +00:00
|
|
|
return FALSE;
|
2011-07-25 09:32:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstCaps *
|
|
|
|
gst_omx_h264_enc_get_caps (GstOMXVideoEnc * enc, GstOMXPort * port,
|
2012-06-20 12:11:58 +00:00
|
|
|
GstVideoCodecState * state)
|
2011-07-25 09:32:51 +00:00
|
|
|
{
|
2011-07-28 12:14:45 +00:00
|
|
|
GstOMXH264Enc *self = GST_OMX_H264_ENC (enc);
|
2011-07-25 09:32:51 +00:00
|
|
|
GstCaps *caps;
|
2011-07-28 12:14:45 +00:00
|
|
|
OMX_ERRORTYPE err;
|
|
|
|
OMX_VIDEO_PARAM_PROFILELEVELTYPE param;
|
|
|
|
const gchar *profile, *level;
|
|
|
|
|
2013-03-11 12:12:57 +00:00
|
|
|
caps = gst_caps_new_simple ("video/x-h264",
|
|
|
|
"stream-format", G_TYPE_STRING, "byte-stream",
|
|
|
|
"alignment", G_TYPE_STRING, "au", NULL);
|
2011-08-02 13:14:37 +00:00
|
|
|
|
2011-07-28 12:14:45 +00:00
|
|
|
GST_OMX_INIT_STRUCT (¶m);
|
2013-02-25 08:15:46 +00:00
|
|
|
param.nPortIndex = GST_OMX_VIDEO_ENC (self)->enc_out_port->index;
|
2011-07-28 12:14:45 +00:00
|
|
|
|
|
|
|
err =
|
2013-02-25 08:15:46 +00:00
|
|
|
gst_omx_component_get_parameter (GST_OMX_VIDEO_ENC (self)->enc,
|
2011-07-28 12:14:45 +00:00
|
|
|
OMX_IndexParamVideoProfileLevelCurrent, ¶m);
|
2011-08-02 13:14:37 +00:00
|
|
|
if (err != OMX_ErrorNone && err != OMX_ErrorUnsupportedIndex)
|
2011-07-28 12:14:45 +00:00
|
|
|
return NULL;
|
|
|
|
|
2011-08-02 13:14:37 +00:00
|
|
|
if (err == OMX_ErrorNone) {
|
|
|
|
switch (param.eProfile) {
|
|
|
|
case OMX_VIDEO_AVCProfileBaseline:
|
|
|
|
profile = "baseline";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCProfileMain:
|
|
|
|
profile = "main";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCProfileExtended:
|
|
|
|
profile = "extended";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCProfileHigh:
|
|
|
|
profile = "high";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCProfileHigh10:
|
|
|
|
profile = "high-10";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCProfileHigh422:
|
|
|
|
profile = "high-4:2:2";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCProfileHigh444:
|
|
|
|
profile = "high-4:4:4";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
break;
|
|
|
|
}
|
2011-07-28 12:14:45 +00:00
|
|
|
|
2011-08-02 13:14:37 +00:00
|
|
|
switch (param.eLevel) {
|
|
|
|
case OMX_VIDEO_AVCLevel1:
|
|
|
|
level = "1";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCLevel1b:
|
|
|
|
level = "1b";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCLevel11:
|
|
|
|
level = "1.1";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCLevel12:
|
|
|
|
level = "1.2";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCLevel13:
|
|
|
|
level = "1.3";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCLevel2:
|
|
|
|
level = "2";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCLevel21:
|
|
|
|
level = "2.1";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCLevel22:
|
|
|
|
level = "2.2";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCLevel3:
|
|
|
|
level = "3";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCLevel31:
|
|
|
|
level = "3.1";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCLevel32:
|
|
|
|
level = "3.2";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCLevel4:
|
|
|
|
level = "4";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCLevel41:
|
|
|
|
level = "4.1";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCLevel42:
|
|
|
|
level = "4.2";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCLevel5:
|
|
|
|
level = "5";
|
|
|
|
break;
|
|
|
|
case OMX_VIDEO_AVCLevel51:
|
|
|
|
level = "5.1";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
gst_caps_set_simple (caps,
|
|
|
|
"profile", G_TYPE_STRING, profile, "level", G_TYPE_STRING, level, NULL);
|
2011-07-28 12:14:45 +00:00
|
|
|
}
|
2011-07-25 09:32:51 +00:00
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
2011-11-15 16:40:07 +00:00
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_omx_h264_enc_handle_output_frame (GstOMXVideoEnc * self, GstOMXPort * port,
|
2012-06-20 12:11:58 +00:00
|
|
|
GstOMXBuffer * buf, GstVideoCodecFrame * frame)
|
2011-11-15 16:40:07 +00:00
|
|
|
{
|
|
|
|
if (buf->omx_buf->nFlags & OMX_BUFFERFLAG_CODECCONFIG) {
|
|
|
|
/* The codec data is SPS/PPS with a startcode => bytestream stream format
|
|
|
|
* For bytestream stream format the SPS/PPS is only in-stream and not
|
|
|
|
* in the caps!
|
|
|
|
*/
|
|
|
|
if (buf->omx_buf->nFilledLen >= 4 &&
|
|
|
|
GST_READ_UINT32_BE (buf->omx_buf->pBuffer +
|
|
|
|
buf->omx_buf->nOffset) == 0x00000001) {
|
2012-06-20 12:11:58 +00:00
|
|
|
GList *l = NULL;
|
2011-11-29 11:21:32 +00:00
|
|
|
GstBuffer *hdrs;
|
2012-04-12 19:57:32 +00:00
|
|
|
GstMapInfo map = GST_MAP_INFO_INIT;
|
2011-11-29 11:21:32 +00:00
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (self, "got codecconfig in byte-stream format");
|
2011-11-15 16:40:07 +00:00
|
|
|
buf->omx_buf->nFlags &= ~OMX_BUFFERFLAG_CODECCONFIG;
|
2011-11-29 11:21:32 +00:00
|
|
|
|
|
|
|
hdrs = gst_buffer_new_and_alloc (buf->omx_buf->nFilledLen);
|
2012-04-12 19:57:32 +00:00
|
|
|
|
|
|
|
gst_buffer_map (hdrs, &map, GST_MAP_WRITE);
|
|
|
|
memcpy (map.data,
|
2011-11-29 11:21:32 +00:00
|
|
|
buf->omx_buf->pBuffer + buf->omx_buf->nOffset,
|
|
|
|
buf->omx_buf->nFilledLen);
|
2012-04-12 19:57:32 +00:00
|
|
|
gst_buffer_unmap (hdrs, &map);
|
2012-06-20 12:11:58 +00:00
|
|
|
l = g_list_append (l, hdrs);
|
|
|
|
gst_video_encoder_set_headers (GST_VIDEO_ENCODER (self), l);
|
2011-11-15 16:40:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-12 19:57:32 +00:00
|
|
|
return
|
|
|
|
GST_OMX_VIDEO_ENC_CLASS
|
|
|
|
(gst_omx_h264_enc_parent_class)->handle_output_frame (self, port, buf,
|
|
|
|
frame);
|
2011-11-15 16:40:07 +00:00
|
|
|
}
|