0
votes
1answer
26 views

C / Youtube API Request > VLC

Im trying to improve my tiny C application wich streams youtube videos. For some reason im not beeing able to send request and decode json. Could someone point me in the right direction, this is the ...
0
votes
0answers
54 views

Using libVLC as a video decoder

I'm attempting to use libVLC as a video decoder for a motion detection project. Previously I was using ffmpeg libraries, but some issues with Matroska files brought me here. Along with playing video ...
1
vote
2answers
60 views

Extract decompression part from jpeglib

I am trying to extract the part of decompression in the libjpeg to add it to embedded project so i should take the minimum size of code , but i think the code is very complex, do you have any idea how ...
0
votes
3answers
387 views

FFmpeg not honoring bitrate for different containers?

I am attempting to encode a mp4 video file into a flv video. Here is what I am doing: #include <stdlib.h> #include <stdio.h> #include <string.h> #include <math.h> #include ...
0
votes
0answers
60 views

ansi-c in-memory packet

Newb here... I am wondering how to process a packet that I'm receiving from a daemon that goes as follows I send a request to client requesting info Client responds and send a xml packet as follows: ...
3
votes
2answers
291 views

Decoding Microsoft True Type Font Files

I am working on an embedded platform (STM32F407) with a TFT LCD as a display (480x800px) and would like to make my user interface somewhat customizable to the end user. I figured the best source of ...
1
vote
1answer
218 views

libav - avcodec_video_encode2() + fwrite() = non functional files

I can't seem to get anything useful out of the AVPacket.data I'm writing. It's not generating valid video files and they're incredibly small. 4Mb converts to ~300Kb. They're not playing and VLC ...
4
votes
1answer
665 views

FFmpeg av_read_frame and maximum packet size

Any possibility to detect maximum packet (AVpacket) size that av_read_frame() can read?
2
votes
4answers
1k views

Decoding and matching Chip 8 opcodes in C/C++

I'm writing a Chip 8 emulator as an introduction to emulation and I'm kind of lost. Basically, I've read a Chip 8 ROM and stored it in a char array in memory. Then, following a guide, I use the ...
0
votes
1answer
278 views

Forward error correction with a 2d array help needed

I have the task of encoding some bytes of sound in a 2d array with check sums i.e: b1 b2 check 1 b3 b4 check 2 ch3 ch4 Where check 1 and check 2 are the checksums for their rows (e.g. ...
0
votes
1answer
497 views

How to use openssl to base 64 decode?

I am developing in C++ using Boost.Asio. I want to be able to base64 decode data and since Boost.Asio links to openssl I want to use it's functions to do so and not add an extra dependency(eg ...
2
votes
5answers
2k views

Decode JPEG to obtain uncompressed data

I want to decode JPEG files and obtain uncompressed decoded output in BMP/RGB format.I am using GNU/Linux, and C/C++. I had a look at libjpeg, but there seemed not to be any good documentation ...
2
votes
3answers
2k views

C++: Remove all HTML formatting from string?

I have a string which might include br or span.../span tags or other HTML characters/entities. I want a robust way of stripping all that and getting the remaining UTF-8 characters. This be should be ...
0
votes
1answer
1k views

Chunked transfer decoder, code snippet for C [duplicate]

Possible Duplicate: Decoding chunked HTTP with Actionscript I'm making a http server that merely allows access to my folder, download the files in it and also uploading to a folder. So far ...