Commit d7ca9149 authored by Marton Balint's avatar Marton Balint

mpegts: factorize pes packet state reset function

Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
parent e2752de3
...@@ -787,6 +787,15 @@ static int mpegts_set_stream_info(AVStream *st, PESContext *pes, ...@@ -787,6 +787,15 @@ static int mpegts_set_stream_info(AVStream *st, PESContext *pes,
return 0; 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) static void new_pes_packet(PESContext *pes, AVPacket *pkt)
{ {
av_init_packet(pkt); av_init_packet(pkt);
...@@ -814,12 +823,7 @@ static void new_pes_packet(PESContext *pes, AVPacket *pkt) ...@@ -814,12 +823,7 @@ static void new_pes_packet(PESContext *pes, AVPacket *pkt)
pkt->pos = pes->ts_packet_pos; pkt->pos = pes->ts_packet_pos;
pkt->flags = pes->flags; pkt->flags = pes->flags;
/* reset pts values */ reset_pes_packet_state(pes);
pes->pts = AV_NOPTS_VALUE;
pes->dts = AV_NOPTS_VALUE;
pes->buffer = NULL;
pes->data_index = 0;
pes->flags = 0;
} }
static uint64_t get_ts64(GetBitContext *gb, int bits) static uint64_t get_ts64(GetBitContext *gb, int bits)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment