summaryrefslogtreecommitdiff
path: root/src/demuxers
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-03-11 23:43:58 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-03-11 23:43:58 +0000
commit0e27a3976b6b5eaab4983b3e63a7009fe77451cf (patch)
tree133a6a7103a5945213c1fe8ceacc273f6a73a59e /src/demuxers
parenta1bc7578243bd93e106fc426374363da16652797 (diff)
downloadxine-lib-0e27a3976b6b5eaab4983b3e63a7009fe77451cf.tar.gz
xine-lib-0e27a3976b6b5eaab4983b3e63a7009fe77451cf.tar.bz2
libdivx4 doesn't handle 3ivx, corrected misleading error message
CVS patchset: 1557 CVS date: 2002/03/11 23:43:58
Diffstat (limited to 'src/demuxers')
-rw-r--r--src/demuxers/demux_avi.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/demuxers/demux_avi.c b/src/demuxers/demux_avi.c
index 3abe24e1b..e3ce6013b 100644
--- a/src/demuxers/demux_avi.c
+++ b/src/demuxers/demux_avi.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: demux_avi.c,v 1.65 2002/03/11 12:31:24 guenter Exp $
+ * $Id: demux_avi.c,v 1.66 2002/03/11 23:43:58 guenter Exp $
*
* demultiplexer for avi streams
*
@@ -1032,11 +1032,11 @@ static void demux_avi_start (demux_plugin_t *this_gen,
this->avi->video_type = fourcc_to_buf_video((void*)&this->avi->bih.biCompression);
if ( !this->avi->video_type ) {
- LOG_MSG(this->xine, _("demux_avi: unknown avi format %.4s\n"),
- (char*)&this->avi->bih.biCompression);
+ LOG_MSG(this->xine, _("demux_avi: unknown video codec '%.4s'\n"),
+ (char*)&this->avi->bih.biCompression);
- this->status = DEMUX_FINISHED;
- return;
+ this->status = DEMUX_FINISHED;
+ return;
}
buf->type = this->avi->video_type;
LOG_MSG(this->xine, _("demux_avi: video codec >%s<\n"), buf_video_name(buf->type));