Giter Site home page Giter Site logo

simplebuffer append about mpegts HOT 3 CLOSED

akanchi avatar akanchi commented on June 11, 2024
simplebuffer append

from mpegts.

Comments (3)

akanchi avatar akanchi commented on June 11, 2024

When appending bytes

void SimpleBuffer::append(const char* bytes, int size)
{
    if (size <= 0)
        return;

    _data.insert(_data.end(), bytes, bytes + size);
    _pos += size;
}

pos will be size if pos is 0
That means that ->

bool SimpleBuffer::empty()
{
    return _pos >= (int)_data.size();
}

Empty will be true (but it should not be) .. Or am I missing something?

There is a bug here. Maybe you can skip(-size) temporarily to avoid this problem.

from mpegts.

andersc avatar andersc commented on June 11, 2024

The problem for me is that it's used in the demuxer

int MpegTsDemuxer::decode(SimpleBuffer *in, TsFrame *&out)
{
    while (!in->empty()) {

meaning it will never parse any bytes.. I just removed the line
_pos += size;
in my fork but that might cause other problems I'm unaware of.

from mpegts.

akanchi avatar akanchi commented on June 11, 2024

When appending/writing bytes, do not change pos, pos should only be used to read buffer.

from mpegts.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.