summaryrefslogtreecommitdiffstats
path: root/libhb/decvobsub.c
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2016-05-17 12:46:38 -0600
committerJohn Stebbins <[email protected]>2016-05-17 12:46:38 -0600
commitc6342c8124cf958f9d63a50e51ac776c8d02967e (patch)
tree4f2a1627364afd37c04dfbb68996a641b86c8413 /libhb/decvobsub.c
parent692acd96901448759d909a3ddd40951d16716592 (diff)
libhb: remove unused hb_buffer_t sequence number
Diffstat (limited to 'libhb/decvobsub.c')
-rw-r--r--libhb/decvobsub.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libhb/decvobsub.c b/libhb/decvobsub.c
index 6fc60c511..85644c47d 100644
--- a/libhb/decvobsub.c
+++ b/libhb/decvobsub.c
@@ -124,7 +124,6 @@ int decsubWork( hb_work_object_t * w, hb_buffer_t ** buf_in,
memcpy( pv->buf->data, in->data, in->size );
pv->buf->s.id = in->s.id;
pv->buf->s.frametype = HB_FRAME_SUBTITLE;
- pv->buf->sequence = in->sequence;
pv->size_got = in->size;
if( in->s.start >= 0 )
{
@@ -139,7 +138,6 @@ int decsubWork( hb_work_object_t * w, hb_buffer_t ** buf_in,
{
memcpy( pv->buf->data + pv->size_got, in->data, in->size );
pv->buf->s.id = in->s.id;
- pv->buf->sequence = in->sequence;
pv->size_got += in->size;
if( in->s.start >= 0 )
{
@@ -169,7 +167,6 @@ int decsubWork( hb_work_object_t * w, hb_buffer_t ** buf_in,
if( buf_out && *buf_out )
{
(*buf_out)->s.id = in->s.id;
- (*buf_out)->sequence = in->sequence;
}
/* Wait for the next one */