Commit 7ff44587 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavf/omadec: Remove an unsed variable.

parent 280a40dd
...@@ -345,7 +345,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -345,7 +345,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
static int aal_read_packet(AVFormatContext *s, AVPacket *pkt) static int aal_read_packet(AVFormatContext *s, AVPacket *pkt)
{ {
int64_t pos = avio_tell(s->pb); int64_t pos = avio_tell(s->pb);
int ret, type, pts; int ret, pts;
int packet_size; int packet_size;
unsigned tag; unsigned tag;
...@@ -358,7 +358,7 @@ static int aal_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -358,7 +358,7 @@ static int aal_read_packet(AVFormatContext *s, AVPacket *pkt)
else if (tag != MKBETAG(0,'B','L','K')) else if (tag != MKBETAG(0,'B','L','K'))
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
type = avio_r8(s->pb); avio_skip(s->pb, 1);
packet_size = avio_rb16(s->pb); packet_size = avio_rb16(s->pb);
avio_skip(s->pb, 2); avio_skip(s->pb, 2);
pts = avio_rb32(s->pb); pts = avio_rb32(s->pb);
......
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