openh264/codec
Martin Storsjö 11bdebb12c Explicitly enable the UAL syntax when using gnu tools
Arm assembly has got two variants of the syntax, the old legacy
syntax, and the new modern UAL (unified assembly language) syntax.

Most arm assembly is the same in the both syntaxes, but some
uncommon cases change the order of suffixes - the "subscs"
instruction would be written "subcss" in the old syntax.

The apple tools default to UAL, while the GNU tools (e.g. in
android) require you to specify ".syntax unified" to enable the
new syntax. When enabling the new syntax with the GNU tools, some
cases of "sub r0, r1, lsl #1" needs to be written explicitly as
"sub r0, r0, r1, lsl #1", handled in the previous commit.

This allows using the same, modern syntax for things like subscs,
without needing to have two alternate forms of writing it.
2014-03-06 16:21:54 +02:00
..
api/svc remove inter-deblock related parameters 2014-03-06 10:26:53 +08:00
build Rename expand_picture.S to expand_picture_neon.S 2014-03-06 16:11:40 +02:00
common Explicitly enable the UAL syntax when using gnu tools 2014-03-06 16:21:54 +02:00
console Merge pull request #428 from sijchen/read_para3 2014-03-06 14:04:33 +08:00
decoder Use the three-operand form of add/sub with shift 2014-03-06 16:21:54 +02:00
encoder Use the three-operand form of add/sub with shift 2014-03-06 16:21:54 +02:00
processing Use the three-operand form of add/sub with shift 2014-03-06 16:21:54 +02:00