]> git.sesse.net Git - pkanalytics/blobdiff - video_widget.cpp
Simplify lambda syntax.
[pkanalytics] / video_widget.cpp
index ba8cf51075b50661e820ae93d80813ae950a69e9..1f3534f117cdf425c6fc1ba048706f82580f4921 100644 (file)
@@ -30,7 +30,15 @@ extern "C" {
 #include <vector>
 #include <unordered_set>
 
+#include "post_to_main_thread.h"
+
 #include <QOpenGLFunctions>
+#include <QWheelEvent>
+#include <QMouseEvent>
+#include <QMouseEvent>
+#include <QHBoxLayout>
+
+#define BUFFER_OFFSET(i) ((char *)nullptr + (i))
 
 using namespace std;
 using namespace std::chrono;
@@ -137,7 +145,7 @@ bool VideoWidget::process_queued_commands(AVFormatContext *format_ctx, AVCodecCo
                        relative_seek_ms += cmd.relative_seek_ms;
                        relative_seek_frames += cmd.relative_seek_frames;
                } else if (cmd.command == QueuedCommand::SEEK_ABSOLUTE) {
-                       base_pts = cmd.seek_ms;
+                       base_pts = av_rescale_q(cmd.seek_ms, AVRational{ 1, 1000 }, video_timebase);
                        relative_seek_ms = 0;
                        relative_seek_frames = 0;
                }
@@ -190,7 +198,7 @@ bool VideoWidget::process_queued_commands(AVFormatContext *format_ctx, AVCodecCo
                                                queue.pop_front();
                                                queued_frames = std::move(queue);
                                        }
-                                       current_frame.reset(new Frame(make_video_frame(frame.get())));
+                                       video_window->set_current_frame(make_video_frame(frame.get()));
                                        update();
                                        store_pts(frame->pts);
                                        break;
@@ -221,7 +229,7 @@ bool VideoWidget::process_queued_commands(AVFormatContext *format_ctx, AVCodecCo
                if (frame == nullptr || error) {
                        return true;
                }
-               current_frame.reset(new Frame(make_video_frame(frame.get())));
+               video_window->set_current_frame(make_video_frame(frame.get()));
                update();
                store_pts(frame->pts);
        }
@@ -229,7 +237,28 @@ bool VideoWidget::process_queued_commands(AVFormatContext *format_ctx, AVCodecCo
 }
 
 VideoWidget::VideoWidget(QWidget *parent)
-       : QOpenGLWidget(parent) {}
+       : QWidget(parent),
+         video_window(new VideoWindow(this)) {
+       setLayout(new QHBoxLayout);
+       layout()->setContentsMargins(QMargins());
+       layout()->addWidget(QWidget::createWindowContainer(video_window));
+
+       // ...
+       connect(video_window, &VideoWindow::mouse_wheel, this, &VideoWidget::wheelEvent);
+       connect(video_window, &VideoWindow::mouse_pressed, this, &VideoWidget::mousePressEvent);
+       connect(video_window, &VideoWindow::mouse_released, this, &VideoWidget::mouseReleaseEvent);
+       connect(video_window, &VideoWindow::mouse_moved, this, &VideoWidget::mouseMoveEvent);
+}
+
+VideoWidget::~VideoWidget()
+{
+       stop();
+
+       // Qt will delete video_window for us after we're gone,
+       // so make sure its destructor does not try to mess with
+       // our freelist. The actual freelist frames will leak.
+       video_window->set_current_frame(nullptr);
+}
 
 GLuint compile_shader(const string &shader_src, GLenum type)
 {
@@ -269,7 +298,7 @@ GLuint compile_shader(const string &shader_src, GLenum type)
        return obj;
 }
 
-void VideoWidget::initializeGL()
+void VideoWindow::initializeGL()
 {
        glDisable(GL_BLEND);
        glDisable(GL_DEPTH_TEST);
@@ -352,7 +381,7 @@ void main()
        glSamplerParameteri(bilinear_sampler, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
 }
 
-void VideoWidget::resizeGL(int w, int h)
+void VideoWindow::resizeGL(int w, int h)
 {
        glViewport(0, 0, w, h);
        display_aspect = double(w) / h;
@@ -369,9 +398,13 @@ int num_levels(GLuint width, GLuint height)
        return levels;
 }
 
-void VideoWidget::paintGL()
+void VideoWindow::paintGL()
 {
-       std::shared_ptr<Frame> frame = current_frame;
+       std::shared_ptr<VideoWidget::Frame> frame;
+       {
+               lock_guard lock(current_frame_mu);
+               frame = current_frame;
+       }
        if (frame == nullptr) {
                glClear(GL_COLOR_BUFFER_BIT);
                return;
@@ -387,15 +420,25 @@ void VideoWidget::paintGL()
                }
        }
 
-       glTextureSubImage2D(tex[0], 0, 0, 0, frame->width, frame->height, GL_RED, GL_UNSIGNED_BYTE, frame->data.get());
+       glBindBuffer(GL_PIXEL_UNPACK_BUFFER, frame->pbo);
+
+       if (frame->need_flush_len > 0) {
+               glFlushMappedNamedBufferRange(frame->pbo, 0, frame->need_flush_len);
+               frame->need_flush_len = 0;
+       }
+
+       glPixelStorei(GL_UNPACK_ROW_LENGTH, 0);
+       glTextureSubImage2D(tex[0], 0, 0, 0, frame->width, frame->height, GL_RED, GL_UNSIGNED_BYTE, BUFFER_OFFSET(0));
        glGenerateTextureMipmap(tex[0]);
 
-       glTextureSubImage2D(tex[1], 0, 0, 0, frame->chroma_width, frame->chroma_height, GL_RED, GL_UNSIGNED_BYTE, frame->data.get() + frame->width * frame->height);
+       glTextureSubImage2D(tex[1], 0, 0, 0, frame->chroma_width, frame->chroma_height, GL_RED, GL_UNSIGNED_BYTE, BUFFER_OFFSET(frame->width * frame->height));
        glGenerateTextureMipmap(tex[1]);
 
-       glTextureSubImage2D(tex[2], 0, 0, 0, frame->chroma_width, frame->chroma_height, GL_RED, GL_UNSIGNED_BYTE, frame->data.get() + frame->width * frame->height + frame->chroma_width * frame->chroma_height);
+       glTextureSubImage2D(tex[2], 0, 0, 0, frame->chroma_width, frame->chroma_height, GL_RED, GL_UNSIGNED_BYTE, BUFFER_OFFSET(frame->width * frame->height + frame->chroma_width * frame->chroma_height));
        glGenerateTextureMipmap(tex[2]);
 
+       glBindBuffer(GL_PIXEL_UNPACK_BUFFER, 0);
+
        glBindTextureUnit(0, tex[0]);
        glBindTextureUnit(1, tex[1]);
        glBindTextureUnit(2, tex[2]);
@@ -425,45 +468,204 @@ void VideoWidget::paintGL()
 
        glBegin(GL_QUADS);
 
+       // (0,0)
        glVertexAttrib2f(1, tx1, ty1);
-       glVertex2f(0.0f, 0.0f);
+       glVertex2f(zoom_matrix[2 * 3 + 0], zoom_matrix[2 * 3 + 1]);
 
+       // (0,1)
        glVertexAttrib2f(1, tx1, ty2);
-       glVertex2f(0.0f, 1.0f);
+       glVertex2f(zoom_matrix[1 * 3 + 0] + zoom_matrix[2 * 3 + 0], zoom_matrix[1 * 3 + 1] + zoom_matrix[2 * 3 + 1]);
 
+       // (1,1)
        glVertexAttrib2f(1, tx2, ty2);
-       glVertex2f(1.0f, 1.0f);
+       glVertex2f(zoom_matrix[0 * 3 + 0] + zoom_matrix[1 * 3 + 0] + zoom_matrix[2 * 3 + 0],
+                  zoom_matrix[1 * 3 + 0] + zoom_matrix[1 * 3 + 1] + zoom_matrix[2 * 3 + 1]);
 
+       // (1,0)
        glVertexAttrib2f(1, tx2, ty1);
-       glVertex2f(1.0f, 0.0f);
+       glVertex2f(zoom_matrix[0 * 3 + 0] + zoom_matrix[2 * 3 + 0],
+                  zoom_matrix[1 * 3 + 0] + zoom_matrix[2 * 3 + 1]);
 
        glEnd();
 }
 
-void VideoWidget::open(const string &filename)
+void VideoWindow::set_current_frame(shared_ptr<VideoWidget::Frame> new_frame)
+{
+       {
+               lock_guard lock(current_frame_mu);
+               current_frame = std::move(new_frame);
+       }
+       update();
+}
+
+void matmul3x3(const double a[9], const double b[9], double res[9])
+{
+       for (int i = 0; i < 3; ++i) {
+               for (int j = 0; j < 3; ++j) {
+                       double sum = 0.0;
+                       for (int k = 0; k < 3; ++k) {
+                               sum += a[i * 3 + k] * b[k * 3 + j];
+                       }
+                       res[i * 3 + j] = sum;
+               }
+       }
+}
+
+void VideoWidget::wheelEvent(QWheelEvent *event)
+{
+       int delta = event->angleDelta().y();
+       if (delta == 0) {
+               return;
+       }
+       double x = event->position().x() / width();
+       double y = 1.0 - event->position().y() / height();
+       double zoom = delta > 0 ? pow(1.005, delta) : pow(1/1.005, -delta);
+
+       const double inv_translation_matrix[9] = {
+               1.0, 0.0, 0.0,
+               0.0, 1.0, 0.0,
+               -x, -y, 1.0
+       };
+       const double scale_matrix[9] = {
+               zoom, 0.0, 0.0,
+               0.0, zoom, 0.0,
+               0.0, 0.0, 1.0
+       };
+       const double translation_matrix[9] = {
+               1.0, 0.0, 0.0,
+               0.0, 1.0, 0.0,
+               x, y, 1.0
+       };
+       double tmp1[9], tmp2[9];
+       matmul3x3(zoom_matrix, inv_translation_matrix, tmp1);
+       matmul3x3(tmp1, scale_matrix, tmp2);
+       matmul3x3(tmp2, translation_matrix, zoom_matrix);
+
+       fixup_zoom_matrix();
+       video_window->set_zoom_matrix(zoom_matrix);
+       update();
+}
+
+void VideoWidget::mousePressEvent(QMouseEvent *e)
+{
+       if (e->button() == Qt::BackButton) {
+               emit mouse_back_clicked();
+       } else if (e->button() == Qt::ForwardButton) {
+               emit mouse_forward_clicked();
+       } else if (e->button() == Qt::LeftButton) {
+               dragging = true;
+               last_drag_x = e->position().x();
+               last_drag_y = e->position().y();
+       }
+}
+
+void VideoWidget::mouseReleaseEvent(QMouseEvent *e)
+{
+       if (e->button() == Qt::LeftButton) {
+               dragging = false;
+       }
+}
+
+void VideoWidget::mouseMoveEvent(QMouseEvent *e)
+{
+       if (!dragging) {
+               return;
+       }
+       float dx = (e->position().x() - last_drag_x) / width();
+       float dy = (e->position().y() - last_drag_y) / height();
+
+       //zoom_matrix[6] += dx * zoom_matrix[0];
+       //zoom_matrix[7] += dy * zoom_matrix[4];
+       zoom_matrix[6] += dx;
+       zoom_matrix[7] -= dy;
+       fixup_zoom_matrix();
+       video_window->set_zoom_matrix(zoom_matrix);
+
+       last_drag_x = e->position().x();
+       last_drag_y = e->position().y();
+
+       update();
+}
+
+// Normalize the matrix so that we never get skew or similar,
+// and also never can zoom or pan too far out.
+void VideoWidget::fixup_zoom_matrix()
+{
+       // Correct for any numerical errors (we know the matrix must be orthogonal
+       // and have zero rotation).
+       zoom_matrix[4] = zoom_matrix[0];
+       zoom_matrix[1] = zoom_matrix[2] = zoom_matrix[3] = zoom_matrix[5] = 0.0;
+       zoom_matrix[8] = 1.0;
+
+       // We can't zoom further out than 1:1. (Perhaps it would be nice to
+       // reuse the last zoom-in point to do this, but the center will have to do
+       // for now.)
+       if (zoom_matrix[0] < 1.0) {
+               const double zoom = 1.0 / zoom_matrix[0];
+               const double inv_translation_matrix[9] = {
+                       1.0, 0.0, 0.0,
+                       0.0, 1.0, 0.0,
+                       -0.5, -0.5, 1.0
+               };
+               const double scale_matrix[9] = {
+                       zoom, 0.0, 0.0,
+                       0.0, zoom, 0.0,
+                       0.0, 0.0, 1.0
+               };
+               const double translation_matrix[9] = {
+                       1.0, 0.0, 0.0,
+                       0.0, 1.0, 0.0,
+                       0.5, 0.5, 1.0
+               };
+               double tmp1[9], tmp2[9];
+               matmul3x3(zoom_matrix, inv_translation_matrix, tmp1);
+               matmul3x3(tmp1, scale_matrix, tmp2);
+               matmul3x3(tmp2, translation_matrix, zoom_matrix);
+       }
+
+       // Looking at the points we'll draw with glVertex2f(), make sure none of them are
+       // inside the square (which would generally mean we've panned ourselves out-of-bounds).
+       // We simply adjust the translation, which is possible because we fixed scaling above.
+       zoom_matrix[6] = min(zoom_matrix[6], 0.0);  // Left side (x=0).
+       zoom_matrix[7] = min(zoom_matrix[7], 0.0);  // Bottom side (y=0).
+       zoom_matrix[6] = std::max(zoom_matrix[6], 1.0 - zoom_matrix[0]);  // Right side (x=1).
+       zoom_matrix[7] = std::max(zoom_matrix[7], 1.0 - zoom_matrix[4]);  // Top side (y=1).
+}
+
+bool VideoWidget::open(const string &filename)
 {
        stop();
        internal_rewind();
        pathname = filename;
        play();
+
+       while (running == STARTING) {
+               // Poor man's condition variable...
+               usleep(10000);
+               sched_yield();
+       }
+       return (running != VIDEO_FILE_ERROR);   
 }
 
 void VideoWidget::play()
 {
-       if (running) {
+       if (running != NOT_RUNNING && running != VIDEO_FILE_ERROR) {
                std::lock_guard<std::mutex> lock(queue_mu);
                command_queue.push_back(QueuedCommand { QueuedCommand::RESUME });
                producer_thread_should_quit.wakeup();
                return;
        }
-       running = true;
+       running = STARTING;
        producer_thread_should_quit.unquit();
+       if (producer_thread.joinable()) {
+               producer_thread.join();
+       }
        producer_thread = std::thread(&VideoWidget::producer_thread_func, this);
 }
 
 void VideoWidget::pause()
 {
-       if (!running) {
+       if (running == NOT_RUNNING || running == VIDEO_FILE_ERROR) {
                return;
        }
        std::lock_guard<std::mutex> lock(queue_mu);
@@ -473,7 +675,7 @@ void VideoWidget::pause()
 
 void VideoWidget::seek(int64_t relative_seek_ms)
 {
-       if (!running) {
+       if (running == NOT_RUNNING || running == VIDEO_FILE_ERROR) {
                return;
        }
        std::lock_guard<std::mutex> lock(queue_mu);
@@ -483,7 +685,7 @@ void VideoWidget::seek(int64_t relative_seek_ms)
 
 void VideoWidget::seek_frames(int64_t relative_seek_frames)
 {
-       if (!running) {
+       if (running == NOT_RUNNING || running == VIDEO_FILE_ERROR) {
                return;
        }
        std::lock_guard<std::mutex> lock(queue_mu);
@@ -493,7 +695,7 @@ void VideoWidget::seek_frames(int64_t relative_seek_frames)
 
 void VideoWidget::seek_absolute(int64_t position_ms)
 {
-       if (!running) {
+       if (running == NOT_RUNNING || running == VIDEO_FILE_ERROR) {
                return;
        }
        std::lock_guard<std::mutex> lock(queue_mu);
@@ -503,10 +705,9 @@ void VideoWidget::seek_absolute(int64_t position_ms)
 
 void VideoWidget::stop()
 {
-       if (!running) {
+       if (running == NOT_RUNNING || running == VIDEO_FILE_ERROR) {
                return;
        }
-       running = false;
        producer_thread_should_quit.quit();
        producer_thread.join();
 }
@@ -515,7 +716,9 @@ void VideoWidget::producer_thread_func()
 {
        if (!producer_thread_should_quit.should_quit()) {
                if (!play_video(pathname)) {
-                       // TODO: Send the error back to the UI somehow.
+                       running = VIDEO_FILE_ERROR;
+               } else {
+                       running = NOT_RUNNING;
                }
        }
 }
@@ -604,15 +807,14 @@ AVFrameWithDeleter VideoWidget::decode_frame(AVFormatContext *format_ctx, AVCode
        AVFrameWithDeleter video_avframe = av_frame_alloc_unique();
        bool eof = false;
        do {
-               AVPacket pkt;
+               AVPacket *pkt = av_packet_alloc();
                unique_ptr<AVPacket, decltype(av_packet_unref)*> pkt_cleanup(
-                       &pkt, av_packet_unref);
-               av_init_packet(&pkt);
-               pkt.data = nullptr;
-               pkt.size = 0;
-               if (av_read_frame(format_ctx, &pkt) == 0) {
-                       if (pkt.stream_index == video_stream_index) {
-                               if (avcodec_send_packet(video_codec_ctx, &pkt) < 0) {
+                       pkt, av_packet_unref);
+               pkt->data = nullptr;
+               pkt->size = 0;
+               if (av_read_frame(format_ctx, pkt) == 0) {
+                       if (pkt->stream_index == video_stream_index) {
+                               if (avcodec_send_packet(video_codec_ctx, pkt) < 0) {
                                        fprintf(stderr, "%s: Cannot send packet to video codec.\n", pathname.c_str());
                                        *error = true;
                                        return AVFrameWithDeleter(nullptr);
@@ -722,6 +924,8 @@ bool VideoWidget::play_video(const string &pathname)
 
        internal_rewind();
 
+       running = RUNNING;
+
        // Main loop.
        int consecutive_errors = 0;
        double rate = 1.0;
@@ -772,7 +976,7 @@ bool VideoWidget::play_video(const string &pathname)
                        bool finished_wakeup;
                        finished_wakeup = producer_thread_should_quit.sleep_until(next_frame_start);
                        if (finished_wakeup) {
-                               current_frame.reset(new Frame(make_video_frame(frame.get())));
+                               video_window->set_current_frame(make_video_frame(frame.get()));
                                last_frame = steady_clock::now();
                                update();
                                break;
@@ -786,7 +990,7 @@ bool VideoWidget::play_video(const string &pathname)
 
                                if (paused) {
                                        // Just paused, so present the frame immediately and then go into deep sleep.
-                                       current_frame.reset(new Frame(make_video_frame(frame.get())));
+                                       video_window->set_current_frame(make_video_frame(frame.get()));
                                        last_frame = steady_clock::now();
                                        update();
                                        break;
@@ -807,7 +1011,9 @@ void VideoWidget::store_pts(int64_t pts)
 {
        last_pts = pts;
        last_position = lrint(pts * double(video_timebase.num) / double(video_timebase.den) * 1000);
-       emit position_changed(last_position);
+       post_to_main_thread([this, last_position{last_position.load()}] {
+               emit position_changed(last_position);
+       });
 }
 
 // Taken from Movit (see the comment there for explanation)
@@ -822,9 +1028,77 @@ float compute_chroma_offset(float pos, unsigned subsampling_factor, unsigned res
        }
 }
 
-VideoWidget::Frame VideoWidget::make_video_frame(const AVFrame *frame)
+shared_ptr<VideoWidget::Frame> VideoWidget::alloc_frame(unsigned width, unsigned height, unsigned chroma_width, unsigned chroma_height)
+{
+       lock_guard lock(freelist_mu);
+       for (auto it = frame_freelist.begin(); it != frame_freelist.end(); ++it) {
+               if ((*it)->width == width &&
+                   (*it)->height == height &&
+                   (*it)->chroma_width == chroma_width &&
+                   (*it)->chroma_height == chroma_height) {
+                       Frame *frame = *it;
+                       frame_freelist.erase(it);
+                       return shared_ptr<Frame>{frame, free_frame};
+               }
+       }
+
+       Frame *frame = new Frame;
+       frame->owner = this;
+       frame->width = width;
+       frame->height = height;
+       frame->chroma_width = chroma_width;
+       frame->chroma_height = chroma_height;
+
+       size_t len = frame->width * frame->height + 2 * frame->chroma_width * frame->chroma_height;
+
+       while (!video_window->isValid()) {
+               usleep(100000);
+       }
+
+       // Augh :-)
+       mutex mu;
+       condition_variable done_cv;
+       bool done = false;
+
+       post_to_main_thread([this, &frame, len, &done, &mu, &done_cv]{
+               video_window->makeCurrent();
+               glCreateBuffers(1, &frame->pbo);
+               glNamedBufferStorage(frame->pbo, len, nullptr, GL_MAP_WRITE_BIT | GL_MAP_PERSISTENT_BIT);
+               frame->data = (uint8_t *)glMapNamedBufferRange(frame->pbo, 0, len, GL_MAP_WRITE_BIT | GL_MAP_FLUSH_EXPLICIT_BIT | GL_MAP_PERSISTENT_BIT);
+               video_window->doneCurrent();
+
+               lock_guard lock(mu);
+               done = true;
+               done_cv.notify_all();
+       });
+       {
+               unique_lock lock(mu);
+               done_cv.wait(lock, [&done]{ return done; });
+       }
+
+       return shared_ptr<Frame>{frame, free_frame};
+}
+
+void VideoWidget::free_frame(VideoWidget::Frame *frame)
+{
+       VideoWidget *self = frame->owner;
+       lock_guard lock(self->freelist_mu);
+       if (self->frame_freelist.size() >= 16) {
+               GLuint pbo = frame->pbo;
+               post_to_main_thread([self, pbo]{
+                       self->video_window->makeCurrent();
+                       glUnmapNamedBuffer(pbo);
+                       glDeleteBuffers(1, &pbo);
+                       self->video_window->doneCurrent();
+               });
+               delete self->frame_freelist.front();
+               self->frame_freelist.pop_front();
+       }
+       self->frame_freelist.push_back(frame);
+}
+
+shared_ptr<VideoWidget::Frame> VideoWidget::make_video_frame(const AVFrame *frame)
 {
-       Frame video_frame;
        AVFrameWithDeleter sw_frame;
 
        if (frame->format == AV_PIX_FMT_VAAPI ||
@@ -865,29 +1139,31 @@ VideoWidget::Frame VideoWidget::make_video_frame(const AVFrame *frame)
        int linesizes[4] = { 0, 0, 0, 0 };
        const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(sws_dst_format);
 
-       video_frame.width = frame->width;
-       video_frame.height = frame->height;
-       video_frame.chroma_width = AV_CEIL_RSHIFT(int(frame->width), desc->log2_chroma_w);
-       video_frame.chroma_height = AV_CEIL_RSHIFT(int(frame->height), desc->log2_chroma_h);
+       shared_ptr<Frame> video_frame = alloc_frame(
+               frame->width,
+               frame->height,
+               AV_CEIL_RSHIFT(int(frame->width), desc->log2_chroma_w),
+               AV_CEIL_RSHIFT(int(frame->height), desc->log2_chroma_h));
 
        // We always assume left chroma placement for now.
-       cbcr_offset[0] = compute_chroma_offset(0.0f, 1 << desc->log2_chroma_w, video_frame.chroma_width);
-       cbcr_offset[1] = compute_chroma_offset(0.5f, 1 << desc->log2_chroma_h, video_frame.chroma_height);
+       video_window->set_cbcr_offset(
+               compute_chroma_offset(0.0f, 1 << desc->log2_chroma_w, video_frame->chroma_width),
+               compute_chroma_offset(0.5f, 1 << desc->log2_chroma_h, video_frame->chroma_height)
+       );
 
-       size_t len = frame->width * frame->height + 2 * video_frame.chroma_width * video_frame.chroma_height;
-       video_frame.data.reset(new uint8_t[len]);
-
-       pic_data[0] = video_frame.data.get();
+       pic_data[0] = video_frame->data;
        linesizes[0] = frame->width;
 
        pic_data[1] = pic_data[0] + frame->width * frame->height;
-       linesizes[1] = video_frame.chroma_width;
+       linesizes[1] = video_frame->chroma_width;
 
-       pic_data[2] = pic_data[1] + video_frame.chroma_width * video_frame.chroma_height;
-       linesizes[2] = video_frame.chroma_width;
+       pic_data[2] = pic_data[1] + video_frame->chroma_width * video_frame->chroma_height;
+       linesizes[2] = video_frame->chroma_width;
 
        sws_scale(sws_ctx.get(), frame->data, frame->linesize, 0, frame->height, pic_data, linesizes);
 
+       video_frame->need_flush_len = video_frame->width * video_frame->height + 2 * video_frame->chroma_width * video_frame->chroma_height;
+
        return video_frame;
 }