1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-04-02 20:35:37 +02:00

latmenc: simplify using avpriv_copy_bits.

Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
Reimar Döffinger 2012-04-10 21:42:17 +02:00
parent eb24def465
commit 9540476ba1

View File

@ -168,7 +168,7 @@ static int latm_write_packet(AVFormatContext *s, AVPacket *pkt)
/* The LATM payload is written unaligned */ /* The LATM payload is written unaligned */
i = 0; /* PayloadMux() */
if (pkt->size && (pkt->data[0] & 0xe1) == 0x81) { if (pkt->size && (pkt->data[0] & 0xe1) == 0x81) {
// Convert byte-aligned DSE to non-aligned. // Convert byte-aligned DSE to non-aligned.
// Due to the input format encoding we know that // Due to the input format encoding we know that
@ -179,11 +179,9 @@ static int latm_write_packet(AVFormatContext *s, AVPacket *pkt)
// This allows us to remux our FATE AAC samples into latm // This allows us to remux our FATE AAC samples into latm
// files that are still playable with minimal effort. // files that are still playable with minimal effort.
put_bits(&bs, 8, pkt->data[0] & 0xfe); put_bits(&bs, 8, pkt->data[0] & 0xfe);
i++; avpriv_copy_bits(&bs, pkt->data + 1, 8*pkt->size - 8);
} } else
/* PayloadMux() */ avpriv_copy_bits(&bs, pkt->data, 8*pkt->size);
for (; i < pkt->size; i++)
put_bits(&bs, 8, pkt->data[i]);
avpriv_align_put_bits(&bs); avpriv_align_put_bits(&bs);
flush_put_bits(&bs); flush_put_bits(&bs);