Cosmetics (extraneous variable, debug message).

This commit is contained in:
gb 2010-04-28 21:15:55 +00:00 committed by Gwenole Beauchesne
parent 86afcbb024
commit 42248445f2

View file

@ -341,7 +341,6 @@ gst_vaapi_decoder_ffmpeg_decode(GstVaapiDecoder *decoder, GstBuffer *buffer)
{ {
GstVaapiDecoderFfmpeg * const ffdecoder = GST_VAAPI_DECODER_FFMPEG(decoder); GstVaapiDecoderFfmpeg * const ffdecoder = GST_VAAPI_DECODER_FFMPEG(decoder);
GstVaapiDecoderFfmpegPrivate * const priv = ffdecoder->priv; GstVaapiDecoderFfmpegPrivate * const priv = ffdecoder->priv;
GstVaapiDecoderStatus status;
GstClockTime inbuf_ts; GstClockTime inbuf_ts;
guchar *inbuf, *outbuf; guchar *inbuf, *outbuf;
gint inbuf_size, outbuf_size; gint inbuf_size, outbuf_size;
@ -366,8 +365,6 @@ gst_vaapi_decoder_ffmpeg_decode(GstVaapiDecoder *decoder, GstBuffer *buffer)
inbuf_ts, inbuf_ts inbuf_ts, inbuf_ts
); );
got_frame = outbuf && outbuf_size > 0; got_frame = outbuf && outbuf_size > 0;
GST_DEBUG("outbuf %p (%d bytes), got frame %d, parsed size %d",
outbuf, outbuf_size, got_frame, parsed_size);
if (parsed_size > 0) { if (parsed_size > 0) {
inbuf += parsed_size; inbuf += parsed_size;