| 1510 | } |
| 1511 | |
| 1512 | static uint16_t language_code(const char *str) |
| 1513 | { |
| 1514 | return (((str[0]-0x60) & 0x1F) << 10) + (((str[1]-0x60) & 0x1F) << 5) + ((str[2]-0x60) & 0x1F); |
| 1515 | } |
| 1516 | |
| 1517 | static int mov_write_3gp_udta_tag(ByteIOContext *pb, AVFormatContext *s, |
| 1518 | const char *tag, const char *str) |
no outgoing calls
no test coverage detected