mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
dvbsub: remove unused variable
Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
53c896770c
commit
f1c69546c0
@ -199,7 +199,7 @@ static void dvb_encode_rle8(uint8_t **pq,
|
|||||||
int w, int h)
|
int w, int h)
|
||||||
{
|
{
|
||||||
uint8_t *q;
|
uint8_t *q;
|
||||||
int x, y, len, x1, f, color;
|
int x, y, len, x1, color;
|
||||||
|
|
||||||
q = *pq;
|
q = *pq;
|
||||||
|
|
||||||
@ -207,7 +207,6 @@ static void dvb_encode_rle8(uint8_t **pq,
|
|||||||
*q++ = 0x12;
|
*q++ = 0x12;
|
||||||
|
|
||||||
x = 0;
|
x = 0;
|
||||||
f = 0;
|
|
||||||
while (x < w) {
|
while (x < w) {
|
||||||
x1 = x;
|
x1 = x;
|
||||||
color = bitmap[x1++];
|
color = bitmap[x1++];
|
||||||
|
Loading…
Reference in New Issue
Block a user