Questions tagged [openh264]

Cisco has taken their H.264 implementation, and open sourced it under BSD license terms. Development and maintenance will be overseen by a board from industry and the open source community. Furthermore, we have provided a binary form suitable for inclusion in applications across a number of different operating systems, and make this binary module available for download from the Internet

73 questions
1
vote
1 answer

FFmpeg autogen in combination with openh264

I'm using FFmpeg autogen to stream images captured from the PC in realtime (60 or 30 fps) to an Android application. Everything is working perfectly as I used the h.264 encoding example provided by FFmpeg autogen. As far as I have understood FFmpeg…
grill2010
  • 574
  • 6
  • 23
1
vote
1 answer

openh264 Repeating frame

I'm using the openh264 lib, in a c++ program, to convert a set of images into a h264 encoded mp4 file. These images represent updates to the screen during a session recording. Lets say a set contains 2 images, one initial screen grab of the desktop…
skarack
  • 11
  • 1
1
vote
1 answer

Openh264 for arm android can't build

I'm trying to build openh264 for arm(and arm64) of android but fail!!It's succees to other platform(x86/x64/mip/mip64). OS : Ubuntu 14.04-i386 (hyper-v) Nasm : is 2.10.9 Error message: ikaros@ikaros-Virtual-Machine:~/openh264/v1.6/openh264$ make…
ays
  • 21
  • 2
1
vote
1 answer

Methods for Exp-Golomb CodeWord Construction and Parsing

I am working with OpenH264 Codec. OpenH264 is using Exp-Golomb Coding for header related information. I have studied several websites and gathered a little information about Exp-Golomb Coding. OpenH264 uses 4 types of Exp-Golomb coding methods. They…
RajibTheKing
  • 1,234
  • 1
  • 15
  • 35
1
vote
0 answers

ndk version [] not compatible with openh264

I installed https://github.com/BelledonneCommunications/linphone-android , got the SDK,NDK etc, now i get this error when i run $ make : cat: /usr/local/bin/RELEASE.TXT: No such file or directory (standard_in) 1: parse error cat:…
1
vote
3 answers

Openh264 compiling using PJSIP

I am trying to build pjsip project with openh264 lib. Everything works fine except openh264 is not being detected by pjsip ./configure-android this is my config_site.h /* Activate Android specific settings in the 'config_site_sample.h' */ #define…
Manoj
  • 2,799
  • 5
  • 30
  • 49
1
vote
1 answer

Get error struct has no member named when build pjsip with openh264?

I want to build Voip app on Android with video support, so I build pjsip 2.4 with openh264 base on following link: https://trac.pjsip.org/repos/wiki/Getting-Started/Android I built openh264 and configure success with pjsip: Using OpenH264…
Lnitus
  • 409
  • 1
  • 4
  • 5
0
votes
0 answers

openH264 support for dual stream - main video - 720p@30fps and content - 1080p@30fps

I am working on a testApp on Android platform using pjSIP media pipeline where I need to support dual video streams with following requirements. Main Video - 720p@30fps Content stream - 1080p@30fps. I use openH264 (pjMedia has openH264 support).…
0
votes
0 answers

Building OpenH264 for Android Studio on Mac M1

I am trying to build OpenH264 on my Mac M1 (OS: Ventura 13.2.1 (22D68)). I am following instructions from https://github.com/cisco/openh264. However, all I am getting is: "make: *** No targets specified and no makefile found. Stop.". Can you guys…
0
votes
1 answer

gst_element_request_pad_simple fails for hlssink2

My appsrc pipeline is as follows: appsrc-openh264enc-h264parse-hlssink2 I first retrieve each element with gst_element_factory_make successfully, each element is checked for nullptrs. Then I add/link all the elements with 'always' presence…
0
votes
0 answers

OpenCV and OpenH264: H264 File is Larger than MPEG-4 File

I am getting unexpected results with writing a file using Python 3.7, OpenCV and using MPEG4 and H264 codecs. Everything I read states that H264 has a higher compression rate than MPEG-4, but my script produces the opposite results. I’m using…
slalomchip
  • 779
  • 2
  • 9
  • 25
0
votes
1 answer

OpenH264 concealing errors

I can't work out how to get error concealment working in OpenH264. My initialisation code looks like this: SDecodingParam sDecParam = {0}; sDecParam.sVideoProperty.eVideoBsType = VIDEO_BITSTREAM_SVC; sDecParam.bParseOnly =…
Nelroy
  • 41
  • 4
0
votes
1 answer

Issue decoding with openh264 a libvlc broadcast sent over UDP

With the following code, I get the same data over UDP however DecodeFrameNoDelay returns an error about Sequence Parameter Sets. Is there something I'm missing in libvlc config or openh264 usage ? Broadcasting part : // broadcaster.h class…
xavi-b
  • 95
  • 1
  • 11
0
votes
1 answer

What is the diffrent between h264 & h264+

I have looking on rfc of h264, and looking the diffrent between h264 and h264+ ,not in the context of compression quality but how the packets are configured in RTP stream. Is h264+ has another NAL type number (SPS,PPS,IDR etc.) is there any NAL type…
MicrosoctCprog
  • 460
  • 1
  • 3
  • 23
0
votes
1 answer

Pjsip/Pjsua video problem : frame buffer too small

I try to make a sip video call using Pjsip/Pjsua on my raspberry pi 3. Before coding, I'm using the main sample app to test different options. Everything seems to work (registering, audio calling,..) but when I try to start a video call, the…