summaryrefslogtreecommitdiff
path: root/src/libreal
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-11-26 19:43:26 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-11-26 19:43:26 +0000
commit3050d97eb83cfdfb4d04a51231acba47e6addf1c (patch)
tree4337d69086ce7d870214e7e5f6a028f8b417521e /src/libreal
parentae2a2a8e08ab3140d5c7ee3a5f33e7db81f76b09 (diff)
downloadxine-lib-3050d97eb83cfdfb4d04a51231acba47e6addf1c.tar.gz
xine-lib-3050d97eb83cfdfb4d04a51231acba47e6addf1c.tar.bz2
lprintf cleanup, pass I.
CVS patchset: 5796 CVS date: 2003/11/26 19:43:26
Diffstat (limited to 'src/libreal')
-rw-r--r--src/libreal/audio_decoder.c94
-rw-r--r--src/libreal/xine_decoder.c100
2 files changed, 68 insertions, 126 deletions
diff --git a/src/libreal/audio_decoder.c b/src/libreal/audio_decoder.c
index c03e87d71..a1de359d0 100644
--- a/src/libreal/audio_decoder.c
+++ b/src/libreal/audio_decoder.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: audio_decoder.c,v 1.31 2003/11/16 23:33:46 f1rmb Exp $
+ * $Id: audio_decoder.c,v 1.32 2003/11/26 19:43:35 f1rmb Exp $
*
* thin layer to use real binary-only codecs in xine
*
@@ -33,16 +33,18 @@
#include <unistd.h>
#include <dlfcn.h>
+#define LOG_MODULE "real_audio_decoder"
+#define LOG_VERBOSE
+/*
+#define LOG
+*/
+
#include "bswap.h"
#include "xine_internal.h"
#include "video_out.h"
#include "buffer.h"
#include "xineutils.h"
-/*
-#define LOG
-*/
-
typedef struct {
audio_decoder_class_t decoder_class;
@@ -124,10 +126,7 @@ static int load_syms_linux (realdec_decoder_t *this, char *codec_name) {
sprintf (path, "%s/%s", entry->str_value, codec_name);
-#ifdef LOG
- printf ("libareal: (audio) opening shared obj '%s'\n", path);
-
-#endif
+ lprintf ("(audio) opening shared obj '%s'\n", path);
this->ra_handle = dlopen (path, RTLD_LAZY);
@@ -171,9 +170,7 @@ static int load_syms_linux (realdec_decoder_t *this, char *codec_name) {
this->raSetDLLAccessPath(path);
}
-#ifdef LOG
- printf ("libareal: audio decoder loaded successfully\n");
-#endif
+ lprintf ("audio decoder loaded successfully\n");
return 1;
}
@@ -193,8 +190,8 @@ static int init_codec (realdec_decoder_t *this, buf_element_t *buf) {
version = BE_16 (buf->content);
+ lprintf ("header buffer detected, header version %d\n", version);
#ifdef LOG
- printf ("libareal: header buffer detected, header version %d\n", version);
xine_hexdump (buf->content, buf->size);
#endif
@@ -232,13 +229,11 @@ static int init_codec (realdec_decoder_t *this, buf_element_t *buf) {
this->block_align= coded_frame_size2;
-#ifdef LOG
- printf ("libareal: 0x%04x 0x%04x 0x%04x 0x%04x data_len 0x%04x\n",
- subpacket_size, coded_frame_size, codec_data_length,
- coded_frame_size2, data_len);
- printf ("libareal: %d samples/sec, %d bits/sample, %d channels\n",
- samples_per_sec, bits_per_sample, num_channels);
-#endif
+ lprintf ("0x%04x 0x%04x 0x%04x 0x%04x data_len 0x%04x\n",
+ subpacket_size, coded_frame_size, codec_data_length,
+ coded_frame_size2, data_len);
+ lprintf ("%d samples/sec, %d bits/sample, %d channels\n",
+ samples_per_sec, bits_per_sample, num_channels);
/* load codec, resolv symbols */
@@ -322,9 +317,7 @@ static int init_codec (realdec_decoder_t *this, buf_element_t *buf) {
if (this->raSetPwd){
/* used by 'SIPR' */
this->raSetPwd (this->context, "Ardubancel Quazanga"); /* set password... lol. */
-#ifdef LOG
- printf ("libareal: password set\n");
-#endif
+ lprintf ("password set\n");
}
result = this->raSetFlavor (this->context, flavor);
@@ -393,10 +386,8 @@ static unsigned char sipr_swaps[38][2]={
static void realdec_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) {
realdec_decoder_t *this = (realdec_decoder_t *) this_gen;
-#ifdef LOG
- printf ("libareal: decode_data %d bytes, flags=0x%08x, pts=%lld ...\n",
- buf->size, buf->decoder_flags, buf->pts);
-#endif
+ lprintf ("decode_data %d bytes, flags=0x%08x, pts=%lld ...\n",
+ buf->size, buf->decoder_flags, buf->pts);
if (buf->decoder_flags & BUF_FLAG_PREVIEW) {
@@ -412,9 +403,7 @@ static void realdec_decode_data (audio_decoder_t *this_gen, buf_element_t *buf)
int size;
-#ifdef LOG
- printf ("libareal: content buffer detected, %d bytes\n", buf->size);
-#endif
+ lprintf ("content buffer detected, %d bytes\n", buf->size);
if (buf->pts && !this->pts)
this->pts = buf->pts;
@@ -432,9 +421,7 @@ static void realdec_decode_data (audio_decoder_t *this_gen, buf_element_t *buf)
memcpy (this->frame_buffer+this->frame_num_bytes, buf->content, size);
this->frame_num_bytes += size;
-#ifdef LOG
- printf ("libareal: buffering %d/%d bytes\n", this->frame_num_bytes, this->frame_size);
-#endif
+ lprintf ("buffering %d/%d bytes\n", this->frame_num_bytes, this->frame_size);
size = 0;
@@ -448,19 +435,15 @@ static void realdec_decode_data (audio_decoder_t *this_gen, buf_element_t *buf)
int h = this->h;
audio_buffer_t *audio_buffer;
-#ifdef LOG
- printf ("libareal: buffering %d bytes\n", needed);
-#endif
+ lprintf ("buffering %d bytes\n", needed);
memcpy (this->frame_buffer+this->frame_num_bytes, buf->content, needed);
size -= needed;
this->frame_num_bytes = 0;
-#ifdef LOG
- printf ("libareal: frame completed. reordering...\n");
- printf ("libareal: bs=%d sps=%d w=%d h=%d \n",/*sh->wf->nBlockAlign*/-1,sps,w,h);
-#endif
+ lprintf ("frame completed. reordering...\n");
+ lprintf ("bs=%d sps=%d w=%d h=%d \n",/*sh->wf->nBlockAlign*/-1,sps,w,h);
if (!sps) {
@@ -508,10 +491,8 @@ static void realdec_decode_data (audio_decoder_t *this_gen, buf_element_t *buf)
for (x=0; x<w; x++) {
-#ifdef LOG
- printf ("libareal: x=%d, y=%d, off %d\n",
- x, y, sps*(h*x+((h+1)/2)*(y&1)+(y>>1)));
-#endif
+ lprintf ("x=%d, y=%d, off %d\n",
+ x, y, sps*(h*x+((h+1)/2)*(y&1)+(y>>1)));
memcpy (this->frame_reordered+sps*(h*x+((h+1)/2)*(y&1)+(y>>1)),
s, sps);
@@ -541,9 +522,7 @@ static void realdec_decode_data (audio_decoder_t *this_gen, buf_element_t *buf)
this->block_align,
(char *) audio_buffer->mem, &len, -1);
-#ifdef LOG
- printf ("libareal: raDecode result %d, len=%d\n", result, len);
-#endif
+ lprintf ("raDecode result %d, len=%d\n", result, len);
audio_buffer->vpts = this->pts;
@@ -559,10 +538,7 @@ static void realdec_decode_data (audio_decoder_t *this_gen, buf_element_t *buf)
}
}
-
-#ifdef LOG
- printf ("libareal: decode_data...done\n");
-#endif
+ lprintf ("decode_data...done\n");
}
static void realdec_reset (audio_decoder_t *this_gen) {
@@ -581,9 +557,7 @@ static void realdec_dispose (audio_decoder_t *this_gen) {
realdec_decoder_t *this = (realdec_decoder_t *) this_gen;
-#ifdef LOG
- printf ("libareal: dispose\n");
-#endif
+ lprintf ("dispose\n");
if (this->context)
this->raCloseCodec (this->context);
@@ -595,9 +569,7 @@ static void realdec_dispose (audio_decoder_t *this_gen) {
this->raFreeDecoder (this->context);
#endif
-#ifdef LOG
- printf ("libareal: dlclose...\n");
-#endif
+ lprintf ("dlclose...\n");
if (this->ra_handle)
dlclose (this->ra_handle);
@@ -610,9 +582,7 @@ static void realdec_dispose (audio_decoder_t *this_gen) {
free (this);
-#ifdef LOG
- printf ("libareal: dispose done\n");
-#endif
+ lprintf ("dispose done\n");
}
static audio_decoder_t *open_plugin (audio_decoder_class_t *class_gen,
@@ -714,9 +684,7 @@ static void *init_class (xine_t *xine, void *data) {
"/usr/lib/win32");
}
-#ifdef LOG
- printf ("libareal: real codec path : %s\n", real_codec_path);
-#endif
+ lprintf ("real codec path : %s\n", real_codec_path);
return this;
}
diff --git a/src/libreal/xine_decoder.c b/src/libreal/xine_decoder.c
index b6488bd77..9f595f880 100644
--- a/src/libreal/xine_decoder.c
+++ b/src/libreal/xine_decoder.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: xine_decoder.c,v 1.54 2003/11/16 23:33:46 f1rmb Exp $
+ * $Id: xine_decoder.c,v 1.55 2003/11/26 19:43:36 f1rmb Exp $
*
* thin layer to use real binary-only codecs in xine
*
@@ -33,17 +33,18 @@
#include <unistd.h>
#include <dlfcn.h>
+#define LOG_MODULE "read_decoder"
+#define LOG_VERBOSE
+/*
+#define LOG
+*/
+
#include "bswap.h"
#include "xine_internal.h"
#include "video_out.h"
#include "buffer.h"
#include "xineutils.h"
-/*
-#define LOG
-*/
-
-
typedef struct {
video_decoder_class_t decoder_class;
@@ -124,9 +125,8 @@ static int load_syms_linux (realdec_decoder_t *this, char *codec_name) {
sprintf (path, "%s/%s", entry->str_value, codec_name);
-#ifdef LOG
- printf ("libreal: opening shared obj '%s'\n", path);
-#endif
+ lprintf ("opening shared obj '%s'\n", path);
+
this->rv_handle = dlopen (path, RTLD_LAZY);
if (!this->rv_handle) {
@@ -190,14 +190,12 @@ static int init_codec (realdec_decoder_t *this, buf_element_t *buf) {
this->height = (init_data.h + 1) & (~1);
this->ratio = (double)this->width/(double)this->height;
-#ifdef LOG
- printf ("libreal: init_data.w=%d(0x%x), init_data.h=%d(0x%x),"
- "this->width=%d(0x%x), this->height=%d(0x%x)\n",
- init_data.w, init_data.w,
- init_data.h, init_data.h,
- this->width, this->width, this->height, this->height);
-#endif
-
+ lprintf ("init_data.w=%d(0x%x), init_data.h=%d(0x%x),"
+ "this->width=%d(0x%x), this->height=%d(0x%x)\n",
+ init_data.w, init_data.w,
+ init_data.h, init_data.h,
+ this->width, this->width, this->height, this->height);
+
_x_stream_info_set(this->stream, XINE_STREAM_INFO_VIDEO_WIDTH, this->width);
_x_stream_info_set(this->stream, XINE_STREAM_INFO_VIDEO_HEIGHT, this->height);
@@ -210,19 +208,16 @@ static int init_codec (realdec_decoder_t *this, buf_element_t *buf) {
printf ("libreal: buf->content\n");
xine_hexdump (buf->content, buf->size);
-
- printf ("libreal: init codec %dx%d... %x %x\n",
- init_data.w, init_data.h,
- init_data.subformat, init_data.format );
#endif
-
+ lprintf ("init codec %dx%d... %x %x\n",
+ init_data.w, init_data.h,
+ init_data.subformat, init_data.format );
+
this->context = NULL;
result = this->rvyuv_init (&init_data, &this->context);
-#ifdef LOG
- printf ("libreal: init result: %d\n", result);
-#endif
+ lprintf ("init result: %d\n", result);
/* setup rv30 codec (codec sub-type and image dimensions): */
if ((init_data.format>=0x20200002) && (buf->type != BUF_VIDEO_RV40)) {
@@ -299,10 +294,8 @@ static void realdec_copy_frame (realdec_decoder_t *this, uint8_t *base[3], int p
static void realdec_decode_data (video_decoder_t *this_gen, buf_element_t *buf) {
realdec_decoder_t *this = (realdec_decoder_t *) this_gen;
-#ifdef LOG
- printf ("libreal: decode_data, flags=0x%08x, len=%d, pts=%lld ...\n",
- buf->decoder_flags, buf->size, buf->pts);
-#endif
+ lprintf ("decode_data, flags=0x%08x, len=%d, pts=%lld ...\n",
+ buf->decoder_flags, buf->size, buf->pts);
if (buf->decoder_flags & BUF_FLAG_PREVIEW) {
/* real_find_sequence_header (&this->real, buf->content, buf->content + buf->size);*/
@@ -356,10 +349,9 @@ static void realdec_decode_data (video_decoder_t *this_gen, buf_element_t *buf)
transform_out,
this->context);
+ lprintf ("transform result: %08x\n", result);
+ lprintf ("transform_out:\n");
#ifdef LOG
- printf ("libreal: transform result: %08x\n", result);
-
- printf ("libreal: transform_out:\n");
xine_hexdump ((char *) transform_out, 5*4);
#endif
@@ -403,14 +395,12 @@ static void realdec_decode_data (video_decoder_t *this_gen, buf_element_t *buf)
_x_stream_info_set(this->stream, XINE_STREAM_INFO_FRAME_DURATION, this->duration);
img->bad_frame = 0;
-#ifdef LOG
- printf ("libreal: pts %lld %lld diff %lld # %d est. duration %lld\n",
- this->pts,
- buf->pts,
- buf->pts - this->pts,
- this->num_frames,
- this->duration);
-#endif
+ lprintf ("pts %lld %lld diff %lld # %d est. duration %lld\n",
+ this->pts,
+ buf->pts,
+ buf->pts - this->pts,
+ this->num_frames,
+ this->duration);
realdec_copy_frame (this, img->base, img->pitches);
@@ -421,9 +411,7 @@ static void realdec_decode_data (video_decoder_t *this_gen, buf_element_t *buf)
/* new frame starting */
-#ifdef LOG
- printf ("libreal: new frame starting (%d bytes)\n", buf->size);
-#endif
+ lprintf ("new frame starting (%d bytes)\n", buf->size);
memcpy (this->chunk_buffer, buf->content, buf->size);
@@ -442,10 +430,7 @@ static void realdec_decode_data (video_decoder_t *this_gen, buf_element_t *buf)
/* buffer another fragment */
-#ifdef LOG
- printf ("libreal: another fragment (%d chunks in buffer)\n",
- this->num_chunks);
-#endif
+ lprintf ("another fragment (%d chunks in buffer)\n", this->num_chunks);
if (((buf->type != BUF_VIDEO_RV30) && (buf->type != BUF_VIDEO_RV40)) ||
(buf->content[0] == this->chunk_id)) {
@@ -470,18 +455,13 @@ static void realdec_decode_data (video_decoder_t *this_gen, buf_element_t *buf)
}
}
-#ifdef LOG
- printf ("libreal: decode_data...done\n");
-#endif
+ lprintf ("decode_data...done\n");
}
static void realdec_flush (video_decoder_t *this_gen) {
/* realdec_decoder_t *this = (realdec_decoder_t *) this_gen; */
-#ifdef LOG
- printf ("libreal: flush\n");
-#endif
-
+ lprintf ("flush\n");
}
static void realdec_reset (video_decoder_t *this_gen) {
@@ -502,9 +482,7 @@ static void realdec_dispose (video_decoder_t *this_gen) {
realdec_decoder_t *this = (realdec_decoder_t *) this_gen;
-#ifdef LOG
- printf ("libreal: dispose\n");
-#endif
+ lprintf ("dispose\n");
if (this->context)
this->stream->video_out->close(this->stream->video_out, this->stream);
@@ -526,9 +504,7 @@ static void realdec_dispose (video_decoder_t *this_gen) {
free (this);
-#ifdef LOG
- printf ("libreal: dispose done\n");
-#endif
+ lprintf ("dispose done\n");
}
static video_decoder_t *open_plugin (video_decoder_class_t *class_gen,
@@ -633,9 +609,7 @@ static void *init_class (xine_t *xine, void *data) {
"/usr/lib/win32");
}
-#ifdef LOG
- printf ("libareal: real codec path : %s\n", real_codec_path);
-#endif
+ lprintf ("real codec path : %s\n", real_codec_path);
return this;
}