Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
From 37f1a07904d164ada5dd0af82cca3742e916bd82 Mon Sep 17 00:00:00 2001 From: Nicolas Gaullier <nicolas.gaullier@cji.paris> Date: Fri, 2 Feb 2024 12:34:39 +0100 Subject: [PATCH] avformat/mpegts: fix first NAL start code splited in two different packets When PES are not aligned and a tiny nal-encoded frame is contained in a single TS packet, the first NAL startcode may be split by the PES boundary, making the packet unworkable. This patch shift the PES boundaries to avoid this. --- libavformat/mpegts.c | 45 ++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 43 insertions(+), 2 deletions(-) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 836d5dd5a3..8f3bdfc690 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -1148,6 +1148,7 @@ static int mpegts_push_data(MpegTSFilter *filter, PESContext *pes = filter->u.pes_filter.opaque; MpegTSContext *ts = pes->ts; const uint8_t *p; + int pes_align_shift = 0; int ret, len; if (!ts->pkt) @@ -1155,6 +1156,39 @@ static int mpegts_push_data(MpegTSFilter *filter, if (is_start) { if (pes->state == MPEGTS_PAYLOAD && pes->data_index > 0) { + if ((pes->st->codecpar->codec_id == AV_CODEC_ID_H264 + || pes->st->codecpar->codec_id == AV_CODEC_ID_HEVC) + && pes->data_index < TS_PACKET_SIZE - 4 - PES_HEADER_SIZE + && pes->data_index >= 4 + && buf_size >= 4 ) { + /* check/avoid spliting the start code + first byte of the first NAL unit in two different packets. + * this could happen with a tiny unaligned PES that fits in a single ts packet. */ + uint8_t *last_p_end = pes->buffer->data + pes->data_index - 4; + p = buf + PES_HEADER_SIZE + buf[PES_HEADER_SIZE - 1]; + if (last_p_end[3] == 0x00 && AV_RB24(p) == 0x000001) + pes_align_shift = 4; + else if (AV_RB16(last_p_end + 2)== 0x0000 && AV_RB16(p) == 0x0001) + pes_align_shift = 3; + else if (AV_RB24(last_p_end + 1)== 0x000000 && *p == 0x01) + pes_align_shift = 2; + else if (AV_RB32(last_p_end) == 0x00000001) + pes_align_shift = 1; + if (pes_align_shift) + { + if (pes->PES_packet_length) + pes->PES_packet_length += pes_align_shift; + last_p_end += 4; + if (pes_align_shift > 3) + *last_p_end++ = 0x00; + if (pes_align_shift > 2) + *last_p_end++ = 0x00; + if (pes_align_shift > 1) + *last_p_end++ = 0x01; + *last_p_end = *(p + pes_align_shift - 1); + pes->data_index += pes_align_shift; + buf_size -= pes_align_shift; + } + } ret = new_pes_packet(pes, ts->pkt); if (ret < 0) return ret; @@ -1206,6 +1240,8 @@ static int mpegts_push_data(MpegTSFilter *filter, } pes->PES_packet_length = AV_RB16(pes->header + 4); + if (pes->PES_packet_length) + pes->PES_packet_length -= pes_align_shift; /* NOTE: zero length means the PES size is unbounded */ if (pes->stream_id != STREAM_ID_PROGRAM_STREAM_MAP && @@ -1300,6 +1336,7 @@ skip: /* we got the full header. We parse it and get the payload */ pes->state = MPEGTS_PAYLOAD; pes->data_index = 0; + p += pes_align_shift; if (pes->stream_type == 0x12 && buf_size > 0) { int sl_header_bytes = read_sl_header(pes, &pes->sl, p, buf_size); @@ -1408,9 +1445,13 @@ skip: pes->data_index += buf_size; /* emit complete packets with known packet size * decreases demuxer delay for infrequent packets like subtitles from - * a couple of seconds to milliseconds for properly muxed files. */ + * a couple of seconds to milliseconds for properly muxed files. + * disabled for video/NALs because at this point it could split/break the first NAL start code. + */ if (!ts->stop_parse && pes->PES_packet_length && - pes->pes_header_size + pes->data_index == pes->PES_packet_length + PES_START_SIZE) { + pes->pes_header_size + pes->data_index == pes->PES_packet_length + PES_START_SIZE && + pes->st->codecpar->codec_id != AV_CODEC_ID_H264 && + pes->st->codecpar->codec_id != AV_CODEC_ID_HEVC) { ts->stop_parse = 1; ret = new_pes_packet(pes, ts->pkt); pes->state = MPEGTS_SKIP; -- 2.30.2
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
⭐ EARN 11,500$ IN LESS THAN 10 MINUTES ✅🎯
JavaScript | 22 sec ago | 0.67 KB
⭐⭐ Free Crypto Method ⭐⭐
JavaScript | 35 sec ago | 0.67 KB
💎💎💎 HOW TO EARN $5,000 A WEEK [GUIDE] 💎 📌✅
JavaScript | 1 min ago | 0.67 KB
🔥 Swapzone Monetizing Method 🔥
JavaScript | 1 min ago | 0.67 KB
🚨 QUICK $1,500 IN 2 HOURS 🎯✅
JavaScript | 2 min ago | 0.67 KB
🎯🎯🎯 EXCLUSIVE TRADING GUIDE
JavaScript | 2 min ago | 0.67 KB
⭐⭐ Free Crypto Method ⭐ ⭐✅
JavaScript | 3 min ago | 0.67 KB
Infinite Money Glitch
JavaScript | 3 min ago | 0.67 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!