mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
ext/ffmpeg/gstffmpegdec.c: My previous commit was not completly correct.. I've disabled our _get_buffer function unti...
Original commit message from CVS: * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_get_buffer): My previous commit was not completly correct.. I've disabled our _get_buffer function until we make it work 100%. I've opened a bug (#321662) for this issue.
This commit is contained in:
parent
e6ada24827
commit
8bf6ddc9d0
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2005-11-16 Luca Ognibene <luogni@tin.it>
|
||||
|
||||
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_get_buffer):
|
||||
My previous commit was not completly correct.. I've disabled
|
||||
our _get_buffer function until we make it work 100%. I've opened a bug
|
||||
(#321662) for this issue.
|
||||
|
||||
2005-11-16 Luca Ognibene <luogni@tin.it>
|
||||
|
||||
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_release_buffer),
|
||||
|
|
|
@ -547,7 +547,7 @@ gst_ffmpegdec_get_buffer (AVCodecContext * context, AVFrame * picture)
|
|||
|
||||
bufsize = avpicture_get_size (context->pix_fmt, width, height);
|
||||
|
||||
if ((width != context->width) || (height != context->height)) {
|
||||
if ((width != context->width) || (height != context->height) || 1) {
|
||||
#ifdef FORCE_OUR_GET_BUFFER
|
||||
context->width = width;
|
||||
context->height = height;
|
||||
|
|
Loading…
Reference in a new issue