[FFmpeg-devel] [PATCH 1/3] mpegts: factorize pes packet state reset function
Marton Balint
cus at passwd.hu
Fri May 2 23:26:56 CEST 2014
Signed-off-by: Marton Balint <cus at passwd.hu>
---
libavformat/mpegts.c | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index 75553b6..1bd697a 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -787,6 +787,15 @@ static int mpegts_set_stream_info(AVStream *st, PESContext *pes,
return 0;
}
+static void reset_pes_packet_state(PESContext *pes)
+{
+ pes->pts = AV_NOPTS_VALUE;
+ pes->dts = AV_NOPTS_VALUE;
+ pes->buffer = NULL;
+ pes->data_index = 0;
+ pes->flags = 0;
+}
+
static void new_pes_packet(PESContext *pes, AVPacket *pkt)
{
av_init_packet(pkt);
@@ -814,12 +823,7 @@ static void new_pes_packet(PESContext *pes, AVPacket *pkt)
pkt->pos = pes->ts_packet_pos;
pkt->flags = pes->flags;
- /* reset pts values */
- pes->pts = AV_NOPTS_VALUE;
- pes->dts = AV_NOPTS_VALUE;
- pes->buffer = NULL;
- pes->data_index = 0;
- pes->flags = 0;
+ reset_pes_packet_state(pes);
}
static uint64_t get_ts64(GetBitContext *gb, int bits)
--
1.8.4.5
More information about the ffmpeg-devel
mailing list