[FFmpeg-cvslog] mpegts: factorize pes packet state reset function
Marton Balint
git at videolan.org
Tue May 6 15:47:37 CEST 2014
ffmpeg | branch: master | Marton Balint <cus at passwd.hu> | Fri May 2 16:51:58 2014 +0200| [d7ca914988439d267382b8b403a7e698f9a0c8ab] | committer: Marton Balint
mpegts: factorize pes packet state reset function
Signed-off-by: Marton Balint <cus at passwd.hu>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d7ca914988439d267382b8b403a7e698f9a0c8ab
---
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)
More information about the ffmpeg-cvslog
mailing list