Questions tagged [decoder]

A device or a software which purpose is to decode an encoded signal or stream.

A device or a software which purpose is to decode an encoded signal or stream.

538 questions
0
votes
1 answer

Encoding and Decoding of Pcap Packets

I need to convert packets to byte format and decode it . How is it possible to convert packets captured using jnetpcap library to array[bytes] and vice-versa in Java?
user3823859
  • 469
  • 1
  • 7
  • 20
0
votes
1 answer

QCom Decoder Output YUV Buffer Distrubed

I'm trying to get images from HD Live Stream. Getting OMX Decoder YUV Streams and converting them into JPG. JPEG is completely disturbed. Tried some suggestions from group but not working. My resolution is 320x240. i will get buffer length is (386…
0
votes
1 answer

Custom Decode Script: EOL while scanning string literal

i made a script to decode a file made a few years ago, and I've run into an issue whilst doing my second decode test. My code: #!/usr/bin/python # -*- coding: utf-8 -*- from decoder.encodings import * #Toontown Online Encoded Script…
Crowded
  • 31
  • 3
0
votes
1 answer

avcodec_decode_video2 crashes, when avpkt.size is assigned

the avcodec_decode_video2 method crashes, when I try to assign the avpkt.size. When I set it to 0 it works, but it doesn't decode anything (the return value is 0). Am I somthing missing, or what value has to be assigned to avpklt.size? I want to…
klanm
  • 3,168
  • 3
  • 19
  • 22
0
votes
1 answer

sun.misc.BASE64Decoder is it thread-safe?

I'm going to use sun.misc.BASE64Decoder 's decodeBuffer(String inputString) in my code. Multiple threads will be calling this function on the same decoder object. Is this thread safe ? Thanks and regards, Raj
raj
  • 3,769
  • 4
  • 25
  • 43
0
votes
1 answer

H.264 decoder Dynamic Linked Library based

I am building a Unity application in which i need to use a h.264 encoded stream. The data will be read over the network and shown on the screen (feed). I Have worked with ffmpeg, but well context close is causing a problem so i was thinking of…
user2967920
  • 469
  • 1
  • 8
  • 22
0
votes
2 answers

BCD to 7 segment Decoder

I just started VHDL coding, and right now have to code a BCD to 7 segment decoder. I am doing a Behavioral design(it's required) but right now I am having trouble on how to code the display. I know how to code this decoder with just one input and…
AOE
  • 109
  • 2
  • 7
  • 14
0
votes
1 answer

Equalizer, BiQuad filter crackling

I am programming an media player android app. I want using the AudioTrack class because I want using an equalizer that have more than 5 Bands. My problem is, I decode the .mp3 file and play the sample with AudioTrack. This works great, but when i am…
0
votes
1 answer

FFMPEG: Explain parameters of any codecs function pointers

I'm going through the article, How to integrate a codec in FFMPEG multimedia framework. According to it, every codec needs to have 3 basic functions to be defined and these functions are assigned to function pointers of the structure AVCodec. The 3…
Zax
  • 2,870
  • 7
  • 52
  • 76
0
votes
0 answers

Reading and writing object in objective-c

i want to save a mutable dictionary to file. the dictionary has several mutable arrays that contain custom object that I implemented. I've implemented the NSCoder protocol in my class but for some reason the property values in those objects get set…
0
votes
2 answers

Decoder implementing a stack as a linked structure

This program I am writing will use a special implementation of a stack as a linked structure. An encoded message input my the user will be parsed and decoded using the stack. What I have written compiles find and runs without crashing. The program…
Larry T.
  • 35
  • 2
  • 9
0
votes
0 answers

MediaCodec decoder strange behaviour

In my implementation I use for MediaCodec decoders to decode videos in a sequential order frame by frame and everything works fine. But if before starting the decoding process I play some media using MediaPlayer and TextureView (extended TextureView…
feisal
  • 585
  • 1
  • 8
  • 20
0
votes
2 answers

C++ MP3,WAV and ACC (Low Level) Decoder?

I have searched before saying this question but i cannot find any decent decorder. I'm using codeblocks under gcc/linux and i need to use QT and C++ for programming. The ideal would be a LGPL, low-level library well documented, that reproduces at…
Delayer
  • 409
  • 1
  • 5
  • 17
0
votes
1 answer

Convert OCTL character to ISO-8859-15(html) with java

how can i conver a String that contains OCTL character to ISO-8859-15, to make understable. I'm working with java. ty. i'm trying to recuperate a value for a informix bbdd, an i put inside String, but when i show in view i saw Espa\321a---> and i…
ZaoTaoBao
  • 2,567
  • 2
  • 20
  • 28
0
votes
1 answer

Make Calendar Which Shows Month Number and Days of Month in VHDL?

Question: Make Calendar Which Shows Month Number and Days of Month ? Write Both in Combinational and Sequential VHDL Constructs ? I am new on this VHDL and i have a quiz on Monday .. Anyone have any idea about where to start and how to start writing…