mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
Merge remote-tracking branch 'cehoyos/master'
* cehoyos/master: Allow muxing h264 into ts with startcode "001" instead of "0001". lavfi/fade: Do not overread input buffer. Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
d1e2d59f23
@ -138,7 +138,9 @@ static int config_props(AVFilterLink *inlink)
|
||||
s->hsub = pixdesc->log2_chroma_w;
|
||||
s->vsub = pixdesc->log2_chroma_h;
|
||||
|
||||
s->bpp = av_get_bits_per_pixel(pixdesc) >> 3;
|
||||
s->bpp = pixdesc->flags & AV_PIX_FMT_FLAG_PLANAR ?
|
||||
1 :
|
||||
av_get_bits_per_pixel(pixdesc) >> 3;
|
||||
s->alpha &= !!(pixdesc->flags & AV_PIX_FMT_FLAG_ALPHA);
|
||||
s->is_packed_rgb = ff_fill_rgba_map(s->rgba_map, inlink->format) >= 0;
|
||||
|
||||
|
@ -1203,7 +1203,7 @@ static void mpegts_write_pes(AVFormatContext *s, AVStream *st,
|
||||
|
||||
int ff_check_h264_startcode(AVFormatContext *s, const AVStream *st, const AVPacket *pkt)
|
||||
{
|
||||
if (pkt->size < 5 || AV_RB32(pkt->data) != 0x0000001) {
|
||||
if (pkt->size < 5 || AV_RB32(pkt->data) != 0x0000001 && AV_RB24(pkt->data) != 0x000001) {
|
||||
if (!st->nb_frames) {
|
||||
av_log(s, AV_LOG_ERROR, "H.264 bitstream malformed, "
|
||||
"no startcode found, use the video bitstream filter 'h264_mp4toannexb' to fix it "
|
||||
|
Loading…
Reference in New Issue
Block a user