Browse Source

Move dnet-ac3 byte-swapping code close to audio packet read code

Fixed version of patch in
[FFmpeg-devel] [PATCH 5/6] rmdec.c: move around rm_ac3_swap_bytes()

Originally committed as revision 11039 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Roberto Togni 18 years ago
parent
commit
e29378ff88
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavformat/rmdec.c

+ 2
- 1
libavformat/rmdec.c View File

@@ -615,6 +615,7 @@ ff_rm_parse_packet (AVFormatContext *s, AVStream *st, int len, AVPacket *pkt,
}
} else
av_get_packet(pb, pkt, len);
rm_ac3_swap_bytes(st, pkt);

} else
av_get_packet(pb, pkt, len);
@@ -707,6 +708,7 @@ static int rm_read_packet(AVFormatContext *s, AVPacket *pkt)
}
pkt->size = len;
}
rm_ac3_swap_bytes(st, pkt);
} else {
int seq=1;
resync:
@@ -724,7 +726,6 @@ resync:
}
}

rm_ac3_swap_bytes(st, pkt);
return 0;
}



Loading…
Cancel
Save