Petro Karashchenko
Petro Karashchenko
I have an issue when I need to save H264 video + G711 audio into container. I have read that it is not possible with mp4, but is supported by...
I have next code snippet ``` typedef volatile struct type1_s { uint32_t a1; uint8_t a2; uint8_t a3; uint8_t a4; uint8_t a5; } __attribute__((packed,aligned(1),uncached)) type1_t; typedef volatile struct { uint32_t b1;...
If will be good if we can add compiler option for ARC to group all variables that are declared with `__attribute__((uncached))` into a single sections `".ucdata"` and `".ucbss"` (similar to...
I have next code snippet ``` #include static uint8_t data[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 }; int test(uint8_t *my_ptr, volatile uint8_t *v_ptr) {...