mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
remove senseless and wrong direct access to ByteIOContext internals
Originally committed as revision 7881 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
51bd81f64d
commit
ff5b8d8360
@ -533,7 +533,7 @@ static int put_payload_parsing_info(
|
||||
ASFContext *asf = s->priv_data;
|
||||
ByteIOContext *pb = &s->pb;
|
||||
int ppi_size, i;
|
||||
unsigned char *start_ppi_ptr = pb->buf_ptr;
|
||||
int64_t start= url_ftell(pb);
|
||||
|
||||
int iLengthTypeFlags = ASF_PPI_LENGTH_TYPE_FLAGS;
|
||||
|
||||
@ -565,7 +565,7 @@ static int put_payload_parsing_info(
|
||||
if (asf->multi_payloads_present)
|
||||
put_byte(pb, nb_payloads | ASF_PAYLOAD_FLAGS);
|
||||
|
||||
ppi_size = pb->buf_ptr - start_ppi_ptr;
|
||||
ppi_size = url_ftell(pb) - start;
|
||||
|
||||
return ppi_size;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user