decode

base64/UTF-16LE decoding in C

My problem is trying to decode a utf-16 encoded string that has been encrypted in base64. The result of such decoding is alwa ... har *)malloc(dest_size); memset(dest,0,dest_size); base64decode(source, dest, dest_size); printf("Decode: %s", dest); }

Decoding an audio file into raw data (decode, resampling, encode) using the FFmpeg API

My task is to open an existing audio file with the extension mka (Matroska container) and extract the audio data. Audio data ... av_packet_unref(&p_packet); } av_packet_unref(&p_packet); av_frame_free(&p_frame); return arr; }