mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
avformat/dvbsub: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
ad465e7897
commit
dfffc4aadc
@ -29,7 +29,7 @@ static int dvbsub_probe(AVProbeData *p)
|
|||||||
{
|
{
|
||||||
int i, j, k;
|
int i, j, k;
|
||||||
const uint8_t *end = p->buf + p->buf_size;
|
const uint8_t *end = p->buf + p->buf_size;
|
||||||
int type, page_id, len;
|
int type, len;
|
||||||
int max_score = 0;
|
int max_score = 0;
|
||||||
|
|
||||||
for(i=0; i<p->buf_size; i++){
|
for(i=0; i<p->buf_size; i++){
|
||||||
@ -41,7 +41,7 @@ static int dvbsub_probe(AVProbeData *p)
|
|||||||
if (*ptr != 0x0f)
|
if (*ptr != 0x0f)
|
||||||
break;
|
break;
|
||||||
type = ptr[1];
|
type = ptr[1];
|
||||||
page_id = AV_RB16(ptr + 2);
|
//page_id = AV_RB16(ptr + 2);
|
||||||
len = AV_RB16(ptr + 4);
|
len = AV_RB16(ptr + 4);
|
||||||
if (type == 0x80) {
|
if (type == 0x80) {
|
||||||
;
|
;
|
||||||
|
Loading…
Reference in New Issue
Block a user