Tagged Questions

9
votes
1answer
344 views

What's the most Pythonic way of determining endianness?

I'm trying to find the best way of working out whether the machine my code is running on is big-endian or little-endian. I have a solution that works (although I haven't tested it on a big-endian ...
5
votes
3answers
221 views

Does Bit Shift Depends on Endianness?

Suppose I have the number 'numb'=1025 [00000000 00000000 00000100 00000001] represented: On Little-Endian Machine: 00000001 00000100 00000000 00000000 On Big-Endian Machine: 00000000 00000000 ...
5
votes
2answers
156 views

How does JPEG endianness matter on coding?

I'm currently working on a big project that involve pictures. One of the big issues I'm having is with the endianness of the picture (jpeg to be clearer). I always though that in our modern world we ...
2
votes
4answers
154 views

How to write a 24 bit message after reading from a 4-byte integer on a big endian machine (C)?

I am constructing a message to send a 24-bit number over the network. For little endian machines, the code is (ptr is the pointer to the message buffer): *ptr++ = (num >> 16) & 0xFF; *ptr++ ...
2
votes
4answers
838 views

Big Endian and Little Endian for Files in C++

I am trying to write some processor independent code to write some files in big endian. I have a sample of code below and I can't understand why it doesn't work. All it is supposed to do is let byte ...
1
vote
2answers
40 views

Defining UTF-16BE strings in C++

I need to define unicode string that would look like so: const char SOME_STRING[] = { 0, 5, 0, 'M', 0, 'y', 0, 'S', 0, 't', 0, 'r' }; This is UTF-16BE string prepended with big endian short ...
1
vote
5answers
204 views

Swapping endiannes in C

I have this string c1eb044f0708015b267913fc4dff5aabe3dd4a97f10f7ba935cd360000000000 How does one swap it so it becomes 000000000036cd35a97b0ff1974adde3ab5aff4dfc1379265b0108074f04ebc1 Those two ...
1
vote
4answers
150 views

Is this program compatible on both big and little endian systems?

I wrote a small program which reverses a string and prints it to screen: void ReverseString(char *String) { char *Begin = String; char *End = String + strlen(String) - 1; char TempChar = ...
1
vote
2answers
345 views

How to find out endianness of a file?

How can I figure out whether it's a big-endian or little-endian file? I just tried to write a big-endian file with matlab but probably it didn't work. Now I want to learn if it is possible to learn ...
0
votes
3answers
125 views

little endian to big endian

see i have already written one library (on little endian machine)it works fine in little endian machine now i when i run in in big endian platform it doesn't works .error are very hard to ...
0
votes
1answer
202 views

How to change endianness of a file?

I used MATLAB to change endiannness of a file. It works but endianness does not change. What's wrong with this code? f = fopen('139o.wav','r+'); litEndFile=fread(f); ...
0
votes
1answer
65 views

When processor endian awareness is required?

I am in Mac. With Cocoa, I know with normal files we can directly read or write without worrying about the endianness. When processor endian awareness is required? Regards, Dhana.