summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2002-12-21 03:08:34 +0000
committerMike Melanson <mike@multimedia.cx>2002-12-21 03:08:34 +0000
commit572235f10ee2895be3d7a5b3ef4bfd4b3601046f (patch)
tree6d89d6b4a5b8a44f8036137303b34a10e1d19296
parent9e04d12e20a84b43ea365bdd570dbec2b694540b (diff)
downloadxine-lib-572235f10ee2895be3d7a5b3ef4bfd4b3601046f.tar.gz
xine-lib-572235f10ee2895be3d7a5b3ef4bfd4b3601046f.tar.bz2
no need to confuse the issue
CVS patchset: 3601 CVS date: 2002/12/21 03:08:34
-rw-r--r--src/libxinevdec/cinepak.c4
-rw-r--r--src/libxinevdec/msrle.c4
-rw-r--r--src/libxinevdec/qtrpza.c4
-rw-r--r--src/libxinevdec/qtsmc.c4
-rw-r--r--src/libxinevdec/rgb.c4
-rw-r--r--src/libxinevdec/svq1.c4
6 files changed, 12 insertions, 12 deletions
diff --git a/src/libxinevdec/cinepak.c b/src/libxinevdec/cinepak.c
index 86826b597..ce8f2a7a6 100644
--- a/src/libxinevdec/cinepak.c
+++ b/src/libxinevdec/cinepak.c
@@ -22,7 +22,7 @@
* based on overview of Cinepak algorithm and example decoder
* by Tim Ferguson: http://www.csse.monash.edu.au/~timf/
*
- * $Id: cinepak.c,v 1.26 2002/12/18 19:20:33 esnel Exp $
+ * $Id: cinepak.c,v 1.27 2002/12/21 03:08:34 tmmm Exp $
*/
#include <stdlib.h>
@@ -422,7 +422,7 @@ static void cvid_decode_data (video_decoder_t *this_gen, buf_element_t *buf) {
this->stream->meta_info[XINE_META_INFO_VIDEOCODEC] = strdup("Cinepak");
this->stream->stream_info[XINE_STREAM_INFO_VIDEO_HANDLED] = 1;
- } else if (this->decoder_ok && !(buf->decoder_flags & BUF_FLAG_SPECIAL)) {
+ } else if (this->decoder_ok) {
if (this->size + buf->size > this->bufsize) {
this->bufsize = this->size + 2 * buf->size;
diff --git a/src/libxinevdec/msrle.c b/src/libxinevdec/msrle.c
index 7be5c88d7..438901049 100644
--- a/src/libxinevdec/msrle.c
+++ b/src/libxinevdec/msrle.c
@@ -21,7 +21,7 @@
* For more information on the MS RLE format, visit:
* http://www.pcisys.net/~melanson/codecs/
*
- * $Id: msrle.c,v 1.13 2002/12/18 21:35:42 esnel Exp $
+ * $Id: msrle.c,v 1.14 2002/12/21 03:08:34 tmmm Exp $
*/
#include <stdio.h>
@@ -229,7 +229,7 @@ static void msrle_decode_data (video_decoder_t *this_gen,
this->stream->stream_info[XINE_STREAM_INFO_VIDEO_HANDLED] = 1;
return;
- } else if (this->decoder_ok && !(buf->decoder_flags & BUF_FLAG_SPECIAL)) {
+ } else if (this->decoder_ok) {
if (this->size + buf->size > this->bufsize) {
this->bufsize = this->size + 2 * buf->size;
diff --git a/src/libxinevdec/qtrpza.c b/src/libxinevdec/qtrpza.c
index 115e4f729..87f1171bc 100644
--- a/src/libxinevdec/qtrpza.c
+++ b/src/libxinevdec/qtrpza.c
@@ -21,7 +21,7 @@
* For more information about the RPZA format, visit:
* http://www.pcisys.net/~melanson/codecs/
*
- * $Id: qtrpza.c,v 1.11 2002/12/18 21:35:42 esnel Exp $
+ * $Id: qtrpza.c,v 1.12 2002/12/21 03:08:34 tmmm Exp $
*/
#include <stdio.h>
@@ -323,7 +323,7 @@ static void qtrpza_decode_data (video_decoder_t *this_gen,
this->stream->stream_info[XINE_STREAM_INFO_VIDEO_HANDLED] = 1;
return;
- } else if (this->decoder_ok && !(buf->decoder_flags & BUF_FLAG_SPECIAL)) {
+ } else if (this->decoder_ok) {
if (this->size + buf->size > this->bufsize) {
this->bufsize = this->size + 2 * buf->size;
diff --git a/src/libxinevdec/qtsmc.c b/src/libxinevdec/qtsmc.c
index 8e1a78cec..ce068e069 100644
--- a/src/libxinevdec/qtsmc.c
+++ b/src/libxinevdec/qtsmc.c
@@ -23,7 +23,7 @@
* For more information on the SMC format, visit:
* http://www.pcisys.net/~melanson/codecs/
*
- * $Id: qtsmc.c,v 1.11 2002/12/18 21:35:42 esnel Exp $
+ * $Id: qtsmc.c,v 1.12 2002/12/21 03:08:34 tmmm Exp $
*/
#include <stdio.h>
@@ -555,7 +555,7 @@ static void qtsmc_decode_data (video_decoder_t *this_gen,
this->stream->stream_info[XINE_STREAM_INFO_VIDEO_HANDLED] = 1;
return;
- } else if (this->decoder_ok && !(buf->decoder_flags & BUF_FLAG_SPECIAL)) {
+ } else if (this->decoder_ok) {
if (this->size + buf->size > this->bufsize) {
this->bufsize = this->size + 2 * buf->size;
diff --git a/src/libxinevdec/rgb.c b/src/libxinevdec/rgb.c
index 2a13fb068..9045fc9cc 100644
--- a/src/libxinevdec/rgb.c
+++ b/src/libxinevdec/rgb.c
@@ -21,7 +21,7 @@
* Actually, this decoder just converts a raw RGB image to a YUY2 map
* suitable for display under xine.
*
- * $Id: rgb.c,v 1.15 2002/12/20 01:35:50 komadori Exp $
+ * $Id: rgb.c,v 1.16 2002/12/21 03:08:34 tmmm Exp $
*/
#include <stdio.h>
@@ -127,7 +127,7 @@ static void rgb_decode_data (video_decoder_t *this_gen,
this->stream->stream_info[XINE_STREAM_INFO_VIDEO_HANDLED] = 1;
return;
- } else if (this->decoder_ok && !(buf->decoder_flags & BUF_FLAG_SPECIAL)) {
+ } else if (this->decoder_ok) {
if (this->size + buf->size > this->bufsize) {
this->bufsize = this->size + 2 * buf->size;
diff --git a/src/libxinevdec/svq1.c b/src/libxinevdec/svq1.c
index 9437f9325..0b5ce9135 100644
--- a/src/libxinevdec/svq1.c
+++ b/src/libxinevdec/svq1.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: svq1.c,v 1.17 2002/12/18 21:35:42 esnel Exp $
+ * $Id: svq1.c,v 1.18 2002/12/21 03:08:34 tmmm Exp $
*/
#include <stdio.h>
@@ -1287,7 +1287,7 @@ static void svq1dec_decode_data (video_decoder_t *this_gen, buf_element_t *buf)
this->stream->meta_info[XINE_META_INFO_VIDEOCODEC] = strdup("Sorenson Video 1");
this->stream->stream_info[XINE_STREAM_INFO_VIDEO_HANDLED] = 1;
- } else if (this->decoder_ok && !(buf->decoder_flags & BUF_FLAG_SPECIAL)) {
+ } else if (this->decoder_ok) {
if (this->size + buf->size > this->bufsize) {
this->bufsize = this->size + 2 * buf->size;