[gstreamer-bugs] [Bug 581379] ffenc_alac not working

GStreamer (bugzilla.gnome.org) bugzilla-daemon at bugzilla.gnome.org
Thu May 7 06:54:47 PDT 2009


If you have any questions why you received this email, please see the text at
the end of this email. Replies to this email are NOT read, please see the text
at the end of this email. You can add comments to this bug at:
  http://bugzilla.gnome.org/show_bug.cgi?id=581379

  GStreamer | gst-ffmpeg | Ver: git

Sebastian Dröge changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |slomo at circular-chaos.org
             Status|UNCONFIRMED                 |NEEDINFO




------- Comment #1 from Sebastian Dröge  2009-05-07 13:54 UTC -------
Seems that the alac encoder requires the input buffer size to be in some
interval... not sure if we want to fix this in gst-ffmpeg. IMHO this should
better be fixed in ffmpeg. Edward, what do you think?

Relevant part of code from alacenc.c:

    if(avctx->frame_size > DEFAULT_FRAME_SIZE) {
        av_log(avctx, AV_LOG_ERROR, "input frame size exceeded\n");
        return -1;
    }

    if(buf_size < 2*s->max_coded_frame_size) {
        av_log(avctx, AV_LOG_ERROR, "buffer size is too small\n");
        return -1;
    }


-- 
See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received
this email, why you can't respond via email, how to stop receiving
emails (or reduce the number you receive), and how to contact someone
if you are having problems with the system.

You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=581379.




More information about the Gstreamer-bugs mailing list