Athanasios Oikonomou

Results 8 comments of Athanasios Oikonomou

Hello, How easy is to port existing code using `libdca` to `libdcadec`? (eg https://github.com/athoik/gst-plugin-dtsdownmix/blob/master/gstdtsdownmix.c) Can you add `Pseudocode example` in docs something like `libdca` has: ``` Pseudocode example ------------------ dca_state_t...

Well having a standalone plugin for dts it's much better for embedded (Enigma2) machines, libav is huge when you have only few MB of flash available. Moreover the custom gst...

libavcodec/libdcadec.c helps a little bit. I guess the following "psedocode" is a good start. ``` struct dcadec_context *ctx; uint8_t *input; int input_size; int **samples, nsamples, channel_mask, sample_rate, bits_per_sample, profile; ctx...

Well I though that support for dowmixed output was there and better than `libdca`. I really hope for a version that will make it possible. It would be nice API...

Actually i tried building `python-librtmp` using `Openembedded`, but i an getting error about cffi. ``` log ERROR: Function failed: do_compile (log file is located at /opt/openpli4/build/tmp/work/mips32el-oe-linux/python-librtmp/0.1.2-r0/temp/log.do_compile.19056) ERROR: Logfile of failure...

Hello again, I tried to build the python-librtmp using Openembedded devshell (devshell setups all required environment variables for cross compile) and now the error is diffrent. ``` log $ python...

Hello, Since i couldn't cross compile python-librtmp, i took different approach. Install qemu (Instractions from here http://rkpisanu.altervista.org/doku.php?id=qemu:qemu_post_install) ``` bash # Download kernel and initrd wget http://ftp.nl.debian.org/debian/dists/stable/main/installer-mipsel/current/images/malta/netboot/vmlinux-3.2.0-4-4kc-malta wget http://ftp.nl.debian.org/debian/dists/stable/main/installer-mipsel/current/images/malta/netboot/initrd.gz # Create...

Hi, Recently I started working on some improvements in satip code from @catalinii. One of the changes was the introduce of eModelInformation class that reads /etc/image-version file and makes the...