]> git.sesse.net Git - nageru/commitdiff
Remove a no-longer-correct comment.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 10 Jan 2016 13:20:42 +0000 (14:20 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 10 Jan 2016 13:20:42 +0000 (14:20 +0100)
h264encode.cpp
h264encode.h

index d5c9e8c9e70a905cb4bef7ee53144e3c1aa91836..02ada023b182879a0f0bf3fea15d3302dcad541b 100644 (file)
@@ -110,7 +110,7 @@ class H264EncoderImpl {
 public:
        H264EncoderImpl(QSurface *surface, int width, int height, HTTPD *httpd);
        ~H264EncoderImpl();
-       void add_audio(int64_t pts, vector<float> audio);  // Needs to come before end_frame() of same pts.
+       void add_audio(int64_t pts, vector<float> audio);
        bool begin_frame(GLuint *y_tex, GLuint *cbcr_tex);
        void end_frame(RefCountedGLsync fence, int64_t pts, const vector<RefCountedFrame> &input_frames);
        void shutdown();
index adf957818da9200390068f96460b4b1c335725a4..f0fcfae0309828b1fbe4826e6dd1d186a1e92ed8 100644 (file)
@@ -47,7 +47,7 @@ public:
         H264Encoder(QSurface *surface, int width, int height, HTTPD *httpd);
         ~H264Encoder();
 
-       void add_audio(int64_t pts, std::vector<float> audio);  // Needs to come before end_frame() of same pts.
+       void add_audio(int64_t pts, std::vector<float> audio);
        bool begin_frame(GLuint *y_tex, GLuint *cbcr_tex);
        void end_frame(RefCountedGLsync fence, int64_t pts, const std::vector<RefCountedFrame> &input_frames);
        void shutdown();  // Blocking.