Commit eabf6560 authored by Panagiotis Issaris's avatar Panagiotis Issaris

Remove the getbe16 functions and use the AV_RB16 macro instead. Patch by Ian

Caulfield, ian dot caulfield gmail dot com.

Originally committed as revision 7768 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4ee97612
...@@ -27,11 +27,6 @@ static int dvdsub_init_decoder(AVCodecContext *avctx) ...@@ -27,11 +27,6 @@ static int dvdsub_init_decoder(AVCodecContext *avctx)
return 0; return 0;
} }
static uint16_t getbe16(const uint8_t *p)
{
return (p[0] << 8) | p[1];
}
static int get_nibble(const uint8_t *buf, int nibble_offset) static int get_nibble(const uint8_t *buf, int nibble_offset)
{ {
return (buf[nibble_offset >> 1] >> ((1 - (nibble_offset & 1)) << 2)) & 0xf; return (buf[nibble_offset >> 1] >> ((1 - (nibble_offset & 1)) << 2)) & 0xf;
...@@ -142,10 +137,10 @@ static int decode_dvd_subtitles(AVSubtitle *sub_header, ...@@ -142,10 +137,10 @@ static int decode_dvd_subtitles(AVSubtitle *sub_header,
sub_header->start_display_time = 0; sub_header->start_display_time = 0;
sub_header->end_display_time = 0; sub_header->end_display_time = 0;
cmd_pos = getbe16(buf + 2); cmd_pos = AV_RB16(buf + 2);
while ((cmd_pos + 4) < buf_size) { while ((cmd_pos + 4) < buf_size) {
date = getbe16(buf + cmd_pos); date = AV_RB16(buf + cmd_pos);
next_cmd_pos = getbe16(buf + cmd_pos + 2); next_cmd_pos = AV_RB16(buf + cmd_pos + 2);
#ifdef DEBUG #ifdef DEBUG
av_log(NULL, AV_LOG_INFO, "cmd_pos=0x%04x next=0x%04x date=%d\n", av_log(NULL, AV_LOG_INFO, "cmd_pos=0x%04x next=0x%04x date=%d\n",
cmd_pos, next_cmd_pos, date); cmd_pos, next_cmd_pos, date);
...@@ -211,8 +206,8 @@ static int decode_dvd_subtitles(AVSubtitle *sub_header, ...@@ -211,8 +206,8 @@ static int decode_dvd_subtitles(AVSubtitle *sub_header,
case 0x06: case 0x06:
if ((buf_size - pos) < 4) if ((buf_size - pos) < 4)
goto fail; goto fail;
offset1 = getbe16(buf + pos); offset1 = AV_RB16(buf + pos);
offset2 = getbe16(buf + pos + 2); offset2 = AV_RB16(buf + pos + 2);
#ifdef DEBUG #ifdef DEBUG
av_log(NULL, AV_LOG_INFO, "offset1=0x%04x offset2=0x%04x\n", offset1, offset2); av_log(NULL, AV_LOG_INFO, "offset1=0x%04x offset2=0x%04x\n", offset1, offset2);
#endif #endif
...@@ -438,7 +433,7 @@ static int dvdsub_parse(AVCodecParserContext *s, ...@@ -438,7 +433,7 @@ static int dvdsub_parse(AVCodecParserContext *s,
if (pc->packet_index == 0) { if (pc->packet_index == 0) {
if (buf_size < 2) if (buf_size < 2)
return 0; return 0;
pc->packet_len = (buf[0] << 8) | buf[1]; pc->packet_len = AV_RB16(buf);
av_freep(&pc->packet); av_freep(&pc->packet);
pc->packet = av_malloc(pc->packet_len); pc->packet = av_malloc(pc->packet_len);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment