[Bug 758933] New: issue about intel(x86) does not provide slice_height and otherwise.

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Tue Dec 1 17:05:46 PST 2015


https://bugzilla.gnome.org/show_bug.cgi?id=758933

            Bug ID: 758933
           Summary: issue about intel(x86) does not provide slice_height
                    and otherwise.
    Classification: Platform
           Product: GStreamer
           Version: 1.6.1
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: Normal
         Component: gst-plugins-bad
          Assignee: gstreamer-bugs at lists.freedesktop.org
          Reporter: ganjisoo at gmail.com
        QA Contact: gstreamer-bugs at lists.freedesktop.org
     GNOME version: ---

Created attachment 316637
  --> https://bugzilla.gnome.org/attachment.cgi?id=316637&action=edit
patch file, original gstamc.c, modified gstamc.c, logs about amc

Hello

I'm trying to build a movie player based on gstreamer android, x86 processor
(Intel Z3835F).
I want to play an mp4 media file whose video codec is h264/avc but gstreamer
printed below:
"Error received from element amcvideodec-omxintelhwvdh264-n: Gstreamer
encountered a general supporting library error "
So, I modified ${SDK}/gst-plugins-bad-1.0-static-1.5/sys/androidmedia/gstamc.c
like below:
gboolean
gst_amc_color_format_info_set (GstAmcColorFormatInfo * color_format_info,
    const GstAmcCodecInfo * codec_info, const gchar * mime, gint color_format,
    gint width, gint height, gint stride, gint slice_height, gint crop_left,
    gint crop_right, gint crop_top, gint crop_bottom)
{
  ...
  if (g_str_has_prefix (codec_info->name, "OMX.Intel.")) {
         // added OMX.Intel. part
         slice_height = height;
     }
  ...
Then just play (never seek) was well but when i jumped to any position of
media, gstreamer printed below:
"Error received from element amcvideodec-omxintelhwvdh264-n: No valid frames
decoded before end of stream"
Unfortunately, I couldn't find any information about x86-based plugins.
How could i play a .mp4 media file (h264/avc)?
What did I miss?

Thank you for reading.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list