nut.c 14.8 KB
Newer Older
1
/*
2
 * "NUT" Container Format muxer and demuxer (DRAFT-20031003)
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * Copyright (c) 2003 Alex Beregszaszi
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * NUT DRAFT can be found in MPlayer CVS at DOCS/tech/mpcf.txt
 *
21
 * AND http://people.fsn.hu/~alex/nut/ (TeX, pdf, ps, dvi, ..)
22 23 24 25 26 27
 *
 */

/*
 * TODO:
 * - checksumming
28
 * - optimal timestamp handling
29 30 31 32 33 34 35 36 37 38
 * - index writing
 * - info and index packet reading support
 * - startcode searching for broken streams
 * - subpacket support
*/

//#define DEBUG 1

#include "avformat.h"
#include "mpegaudio.h"
39
#include "avi.h"
40

41 42 43 44 45 46 47 48
//from /dev/random

#define     MAIN_STARTCODE (0xF9526A6200000000ULL + ('N'<<24) + ('U'<<16) + ('T'<<8) + 'M')
#define   STREAM_STARTCODE (0xD667773F00000000ULL + ('N'<<24) + ('U'<<16) + ('T'<<8) + 'S')
#define KEYFRAME_STARTCODE (0xCB86308700000000ULL + ('N'<<24) + ('U'<<16) + ('T'<<8) + 'K')
#define    INDEX_STARTCODE (0xEBFCDE0E00000000ULL + ('N'<<24) + ('U'<<16) + ('T'<<8) + 'X')
#define     INFO_STARTCODE (0xA37B643500000000ULL + ('N'<<24) + ('U'<<16) + ('T'<<8) + 'I')

49 50 51 52
typedef struct {
    int curr_frame_start;
    int last_frame_size;
    int curr_frame_size;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
53 54
    int *msb_timestamp_shift;
    int64_t *last_msb_timestamp;
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
} NUTContext;

static int bytes_left(ByteIOContext *bc)
{
    return bc->buf_end - bc->buf_ptr;
}

static uint64_t get_v(ByteIOContext *bc)
{
    uint64_t val = 0;

    for(; bytes_left(bc) > 0; )
    {
	int tmp = get_byte(bc);

	if (tmp&0x80)
	    val= (val<<7) + tmp - 0x80;
	else
	    return (val<<7) + tmp;
    }
    return -1;
}

static int64_t get_s(ByteIOContext *bc)
{
    int64_t v = get_v(bc) + 1;

    if (v&1)
        return -(v>>1);
    else
        return (v>>1);
}

88
static int get_b(ByteIOContext *bc, char *data, int maxlen)
89
{
90
    int i, len;
91 92
    
    len = get_v(bc);
93 94
    for (i = 0; i < len && i < maxlen; i++)
	data[i] = get_byte(bc);
95
    /* skip remaining bytes */
96
    url_fskip(bc, len-i);
97 98 99 100 101 102

    return 0;
}

static int get_bi(ByteIOContext *bc)
{
103
   int i, len, val = 0;
104 105
    
    len = get_v(bc);
106
    for (i = 0; i < len && i <= 4; i++)
107
        val |= get_byte(bc) << (i * 8);
108
    /* skip remaining bytes */
109
    url_fskip(bc, len-i);
110

111
    return val;
112 113 114 115 116 117 118 119 120 121 122 123 124
}

static int get_packetheader(NUTContext *nut, ByteIOContext *bc)
{
    nut->curr_frame_start = url_ftell(bc);
    nut->curr_frame_size = get_v(bc);
    nut->last_frame_size = get_v(bc);
    dprintf("Packet: fwd: %d bwd: %d\n",
	nut->curr_frame_size, nut->last_frame_size);
    
    return 0;
}

Michael Niedermayer's avatar
Michael Niedermayer committed
125 126 127 128 129
/**
 * 
 */
static int get_length(uint64_t val){
    int i;
130

Michael Niedermayer's avatar
Michael Niedermayer committed
131 132 133
    for (i=7; ; i+=7)
	if ((val>>i) == 0)
	    return i;
134

Michael Niedermayer's avatar
Michael Niedermayer committed
135
    return 7; //not reached
136 137
}

138
#ifdef CONFIG_ENCODERS
139 140 141 142 143 144 145 146 147 148 149
static int put_v(ByteIOContext *bc, uint64_t val)
{
    int i;

//    if (bytes_left(s)*8 < 9)
//	return -1;

    if (bytes_left(bc) < 1)
	return -1;

    val &= 0x7FFFFFFFFFFFFFFFULL; // FIXME can only encode upto 63 bits currently
Michael Niedermayer's avatar
Michael Niedermayer committed
150
    i= get_length(val);
151

152
    for (i-=7; i>0; i-=7){
153
	put_byte(bc, 0x80 | (val>>i));
154
    }
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179

    put_byte(bc, val&0x7f);

    return 0;
}

static int put_s(ByteIOContext *bc, uint64_t val)
{
    if (val<=0)
	return put_v(bc, -2*val);
    else
	return put_v(bc, 2*val-1);
}

static int put_b(ByteIOContext *bc, char *data, int len)
{
    int i;
    
    put_v(bc, len);
    for (i = 0; i < len; i++)
	put_byte(bc, data[i]);

    return 0;
}

180 181 182 183 184 185 186
static int put_bi(ByteIOContext *bc, int val)
{
    put_v(bc, 4);
    put_le32(bc, val);
    return 0;
}

Michael Niedermayer's avatar
Michael Niedermayer committed
187
static int put_packetheader(NUTContext *nut, ByteIOContext *bc, int max_size)
188 189 190
{
    put_flush_packet(bc);
    nut->curr_frame_start = url_ftell(bc);
Michael Niedermayer's avatar
Michael Niedermayer committed
191
    nut->curr_frame_size = max_size;
192 193 194 195 196 197 198 199 200 201 202 203
    
    /* packet header */
    put_v(bc, nut->curr_frame_size); /* forward ptr */
    put_v(bc, nut->last_frame_size); /* backward ptr */
    dprintf("Packet: fwd: %d, bwd: %d\n",
	nut->curr_frame_size, nut->last_frame_size);

    nut->last_frame_size = nut->curr_frame_size;
    
    return 0;
}

Michael Niedermayer's avatar
Michael Niedermayer committed
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
static int update_packetheader(NUTContext *nut, ByteIOContext *bc, int additional_size){
    offset_t start= nut->curr_frame_start;
    offset_t cur= url_ftell(bc);
    int size= cur - start + additional_size;
    
    assert( size <= nut->curr_frame_size );
    
    url_fseek(bc, start, SEEK_SET);
    put_v(bc, size);
    if(get_length(size) < get_length(nut->curr_frame_size))
        put_byte(bc, 0x80);
    nut->curr_frame_size= size;
    dprintf("Packet update: size: %d\n", size);

    url_fseek(bc, cur, SEEK_SET);    
219 220 221 222 223 224 225 226 227 228 229 230
    
    return 0;
}

static int nut_write_header(AVFormatContext *s)
{
    NUTContext *nut = s->priv_data;
    ByteIOContext *bc = &s->pb;
    AVCodecContext *codec;
    int i;

    /* main header */
231
    put_be64(bc, MAIN_STARTCODE);
232
    put_packetheader(nut, bc, 120);
233 234
    put_v(bc, 0); /* version */
    put_v(bc, s->nb_streams);
235
    put_be32(bc, 0); /* FIXME: checksum */
236
    
Michael Niedermayer's avatar
Michael Niedermayer committed
237 238
    update_packetheader(nut, bc, 0);
    
Alex Beregszaszi's avatar
Alex Beregszaszi committed
239 240 241 242 243
    nut->msb_timestamp_shift =	
	av_mallocz(sizeof(nut->msb_timestamp_shift)*s->nb_streams);
    nut->last_msb_timestamp =
	av_mallocz(sizeof(nut->last_msb_timestamp)*s->nb_streams);
    
244 245 246
    /* stream headers */
    for (i = 0; i < s->nb_streams; i++)
    {
247 248
	int nom, denom;

249 250
	codec = &s->streams[i]->codec;
	
251
	put_be64(bc, STREAM_STARTCODE);
252
	put_packetheader(nut, bc, 120);
Alex Beregszaszi's avatar
Alex Beregszaszi committed
253
	put_v(bc, i /*s->streams[i]->index*/);
254 255
	put_v(bc, (codec->codec_type == CODEC_TYPE_AUDIO) ? 32 : 0);
	if (codec->codec_tag)
256
	    put_bi(bc, codec->codec_tag);
257 258 259
	else if (codec->codec_type == CODEC_TYPE_VIDEO)
	{
	    int tmp = codec_get_bmp_tag(codec->codec_id);
260
	    put_bi(bc, tmp);
261 262 263 264
	}
	else if (codec->codec_type == CODEC_TYPE_AUDIO)
	{
	    int tmp = codec_get_wav_tag(codec->codec_id);
265
	    put_bi(bc, tmp);
Alex Beregszaszi's avatar
Alex Beregszaszi committed
266 267 268 269 270 271 272 273 274
	}

	if (codec->codec_type == CODEC_TYPE_VIDEO)
	{
	    nom = codec->frame_rate;
	    denom = codec->frame_rate_base;
	}
	else
	{
275 276
	    nom = codec->sample_rate/8;
	    denom = 8;
277 278 279
	}
	put_v(bc, codec->bit_rate);
	put_v(bc, 0); /* no language code */
280 281
	put_v(bc, nom);
	put_v(bc, denom);
Alex Beregszaszi's avatar
Alex Beregszaszi committed
282 283
	nut->msb_timestamp_shift[i] = 0;
	put_v(bc, nut->msb_timestamp_shift[i]);
284 285 286 287 288 289 290 291
	put_v(bc, 0); /* shuffle type */
	put_byte(bc, 0); /* flags: 0x1 - fixed_fps, 0x2 - index_present */
	
	put_v(bc, 0); /* no codec specific headers */
	
	switch(codec->codec_type)
	{
	    case CODEC_TYPE_AUDIO:
292
		put_v(bc, (codec->sample_rate * denom) / nom);
293
		put_v(bc, codec->channels);
294
		put_be32(bc, 0); /* FIXME: checksum */
295 296 297 298 299 300 301
		break;
	    case CODEC_TYPE_VIDEO:
		put_v(bc, codec->width);
		put_v(bc, codec->height);
		put_v(bc, 0); /* aspected w */
		put_v(bc, 0); /* aspected h */
		put_v(bc, 0); /* csp type -- unknown */
302
		put_be32(bc, 0); /* FIXME: checksum */
303
		break;
304 305
            default:
                break;
306
	}
Michael Niedermayer's avatar
Michael Niedermayer committed
307
        update_packetheader(nut, bc, 0);
308 309 310 311
    }

#if 0
    /* info header */
312
    put_be64(bc, INFO_STARTCODE);
313
    put_packetheader(nut, bc, 16+strlen(s->author)+strlen(s->title)+
Michael Niedermayer's avatar
Michael Niedermayer committed
314
        strlen(s->comment)+strlen(s->copyright)); 
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
    if (s->author[0])
    {
        put_v(bc, 5); /* type */
        put_b(bc, s->author, strlen(s->author));
    }
    if (s->title[0])
    {
        put_v(bc, 6); /* type */
        put_b(bc, s->title, strlen(s->title));
    }
    if (s->comment[0])
    {
        put_v(bc, 7); /* type */
        put_b(bc, s->comment, strlen(s->comment));
    }
    if (s->copyright[0])
    {
        put_v(bc, 8); /* type */
        put_b(bc, s->copyright, strlen(s->copyright));
    }
    /* encoder */
    put_v(bc, 9); /* type */
Alex Beregszaszi's avatar
Alex Beregszaszi committed
337 338 339
    put_b(bc, LIBAVFORMAT_IDENT "\0", strlen(LIBAVFORMAT_IDENT));
    
    put_v(bc, 0); /* eof info */
340

341
    put_be32(bc, 0); /* FIXME: checksum */
Michael Niedermayer's avatar
Michael Niedermayer committed
342
    update_packetheader(nut, bc, 0);
343 344 345 346 347 348 349 350
#endif
        
    put_flush_packet(bc);
    
    return 0;
}

static int nut_write_packet(AVFormatContext *s, int stream_index, 
351
			    const uint8_t *buf, int size, int64_t pts)
352 353 354
{
    NUTContext *nut = s->priv_data;
    ByteIOContext *bc = &s->pb;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
355
    int key_frame = 0, flags, msb_pts = 0;
356
    AVCodecContext *enc;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
357
    int64_t lsb_pts;
358 359 360 361 362

    if (stream_index > s->nb_streams)
	return 1;

    enc = &s->streams[stream_index]->codec;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
363 364 365 366 367 368 369 370 371 372 373 374
    // FIXME, lavc reports always keyframes for audio, which will make
    // _huge_ overhead
    if (enc->codec_type == CODEC_TYPE_VIDEO)
	key_frame = enc->coded_frame->key_frame;

    if (key_frame /*||
	((pts - (nut->last_msb_timestamp[stream_index] <<
	nut->msb_timestamp_shift[stream_index])) > 1024)*/)
    {
	msb_pts = 1;
	nut->last_msb_timestamp[stream_index] = pts >> nut->msb_timestamp_shift[stream_index];
    }
375

Alex Beregszaszi's avatar
Alex Beregszaszi committed
376
    lsb_pts = pts - (nut->last_msb_timestamp[stream_index] << nut->msb_timestamp_shift[stream_index]);
377 378 379 380
    
    flags=0;
    flags<<=2; flags|=1; //priority
    flags<<=1; flags|=0; //checksum
Alex Beregszaszi's avatar
Alex Beregszaszi committed
381
    flags<<=1; flags|=msb_pts; //msb_timestamp_flag
382 383 384
    flags<<=2; flags|=1; //subpacket_type
    flags<<=1; flags|=0; //reserved

Alex Beregszaszi's avatar
Alex Beregszaszi committed
385 386
    if (key_frame)
	put_be64(bc, KEYFRAME_STARTCODE);
387
    put_byte(bc, flags);
388 389

    put_packetheader(nut, bc, size+20);
390
    put_v(bc, stream_index);
Alex Beregszaszi's avatar
Alex Beregszaszi committed
391 392 393
    if (msb_pts)
	put_v(bc, nut->last_msb_timestamp[stream_index]);
    put_v(bc, lsb_pts); /* lsb_timestamp */
Michael Niedermayer's avatar
Michael Niedermayer committed
394
    update_packetheader(nut, bc, size);
395 396 397 398 399 400 401 402 403 404
    
    put_buffer(bc, buf, size);
    
    put_flush_packet(bc);

    return 0;
}

static int nut_write_trailer(AVFormatContext *s)
{
Alex Beregszaszi's avatar
Alex Beregszaszi committed
405
    NUTContext *nut = s->priv_data;
406 407 408 409 410 411 412 413
    ByteIOContext *bc = &s->pb;
#if 0
    int i;

    /* WRITE INDEX */

    for (i = 0; s->nb_streams; i++)
    {
414
	put_be64(bc, INDEX_STARTCODE);
415
	put_packetheader(nut, bc, 64);
416 417
	put_v(bc, s->streams[i]->id);
	put_v(bc, ...);
418
	put_be32(bc, 0); /* FIXME: checksum */
Michael Niedermayer's avatar
Michael Niedermayer committed
419
        update_packetheader(nut, bc, 0);
420 421 422 423
    }
#endif

    put_flush_packet(bc);
Alex Beregszaszi's avatar
Alex Beregszaszi committed
424 425 426 427 428
    
    if (nut->last_msb_timestamp)
	av_free(nut->last_msb_timestamp);
    if (nut->msb_timestamp_shift)
	av_free(nut->msb_timestamp_shift);
429 430 431

    return 0;
}
432
#endif //CONFIG_ENCODERS
433 434 435

static int nut_probe(AVProbeData *p)
{
436 437 438 439 440 441 442 443 444 445 446
    int i;
    uint64_t code;

    code = 0xff;
    for (i = 0; i < p->buf_size; i++) {
        int c = p->buf[i];
        code = (code << 8) | c;
        if (code == MAIN_STARTCODE)
            return AVPROBE_SCORE_MAX;
    }
    return 0;
447 448 449 450 451 452
}

static int nut_read_header(AVFormatContext *s, AVFormatParameters *ap)
{
    NUTContext *nut = s->priv_data;
    ByteIOContext *bc = &s->pb;
453
    uint64_t tmp;
454 455 456
    int cur_stream, nb_streams;
    
    /* main header */
457 458 459
    tmp = get_be64(bc);
    if (tmp != MAIN_STARTCODE)
	fprintf(stderr, "damaged? startcode!=1 (%Ld)\n", tmp);
460
    get_packetheader(nut, bc);
461 462 463
    
    tmp = get_v(bc);
    if (tmp != 0)
464
	fprintf(stderr, "bad version (%Ld)\n", tmp);
465 466
    
    nb_streams = get_v(bc);
467
    get_be32(bc); /* checkusm */
468 469
    
    s->bit_rate = 0;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
470 471 472 473 474

    nut->msb_timestamp_shift =	
	av_malloc(sizeof(nut->msb_timestamp_shift)*s->nb_streams);
    nut->last_msb_timestamp =
	av_malloc(sizeof(nut->last_msb_timestamp)*s->nb_streams);
475 476 477 478
    
    /* stream header */
    for (cur_stream = 0; cur_stream < nb_streams; cur_stream++)
    {
479
	int class, nom, denom;
480 481
	AVStream *st;
	
482 483 484
	tmp = get_be64(bc);
	if (tmp != STREAM_STARTCODE)
	    fprintf(stderr, "damaged? startcode!=1 (%Ld)\n", tmp);
485
	get_packetheader(nut, bc);
486 487 488 489
	st = av_new_stream(s, get_v(bc));
	if (!st)
	    return AVERROR_NOMEM;
	class = get_v(bc);
490
	tmp = get_bi(bc);
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
	switch(class)
	{
	    case 0:
		st->codec.codec_type = CODEC_TYPE_VIDEO;
		st->codec.codec_id = codec_get_bmp_id(tmp);
		if (st->codec.codec_id == CODEC_ID_NONE)
		    fprintf(stderr, "Unknown codec?!\n");
		break;
	    case 32:
		st->codec.codec_type = CODEC_TYPE_AUDIO;
		st->codec.codec_id = codec_get_wav_id(tmp);
		if (st->codec.codec_id == CODEC_ID_NONE)
		    fprintf(stderr, "Unknown codec?!\n");
		break;
	    default:
		fprintf(stderr, "Unknown stream class (%d)\n", class);
		return -1;
	}
	s->bit_rate += get_v(bc);
510
	get_b(bc, NULL, 0); /* language code */
511 512
	nom = get_v(bc);
	denom = get_v(bc);
Alex Beregszaszi's avatar
Alex Beregszaszi committed
513
	nut->msb_timestamp_shift[cur_stream] = get_v(bc);
514 515
	get_v(bc); /* shuffle type */
	get_byte(bc); /* flags */
516 517 518 519

	/* codec specific data headers */
	while(get_v(bc) != 0)
	    url_fskip(bc, get_v(bc));
520 521 522 523 524 525 526 527
	
	if (class == 0) /* VIDEO */
	{
	    st->codec.width = get_v(bc);
	    st->codec.height = get_v(bc);
	    get_v(bc); /* aspected w */
	    get_v(bc); /* aspected h */
	    get_v(bc); /* csp type */
528
	    get_be32(bc); /* checksum */
529 530 531

	    st->codec.frame_rate = nom;
	    st->codec.frame_rate_base = denom;
532 533 534
	}
	if (class == 32) /* AUDIO */
	{
535
	    st->codec.sample_rate = (get_v(bc) * nom) / denom;
536
	    st->codec.channels = get_v(bc);
537
	    get_be32(bc); /* checksum */
538 539 540 541 542 543 544 545 546 547
	}
    }    
    
    return 0;
}

static int nut_read_packet(AVFormatContext *s, AVPacket *pkt)
{
    NUTContext *nut = s->priv_data;
    ByteIOContext *bc = &s->pb;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
548
    int id, size;
549
    int key_frame = 0;
550
    uint64_t tmp;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
551
    int64_t pts = 0;
552 553 554 555 556

    if (url_feof(bc))
	return -1;
    
    tmp = get_byte(bc);
557
    if (tmp & 0x80) /* zero bit set? */
558
    {
559 560 561 562
	tmp<<=8 ; tmp |= get_byte(bc);
	tmp<<=16; tmp |= get_be16(bc);
	tmp<<=32; tmp |= get_be32(bc);
	if (tmp == KEYFRAME_STARTCODE)
563 564 565 566 567
	{
	    key_frame = 1;
	    tmp = get_byte(bc); /* flags */
	}
	else
568
	    fprintf(stderr, "error in zero bit / startcode %LX\n", tmp);
569
    }
570
    get_packetheader(nut, bc);
571 572
#if 0
    if (((tmp & 0x60)>>5) > 3) /* priority <= 3 */
573
	fprintf(stderr, "sanity check failed!\n");
574
#endif
575
    id = get_v(bc);
Alex Beregszaszi's avatar
Alex Beregszaszi committed
576 577 578
    if ((tmp & 0x8) >> 3)
	pts = get_v(bc) << nut->msb_timestamp_shift[id];
    pts += get_v(bc);
579 580
    
    size = (nut->curr_frame_size - (url_ftell(bc)-nut->curr_frame_start));
Alex Beregszaszi's avatar
Alex Beregszaszi committed
581
    dprintf("flags: 0x%llx, timestamp: %llx, packet size: %d\n", tmp, pts, size);
582 583 584 585 586 587 588 589 590
    
    if (size < 0)
	return -1;

    av_new_packet(pkt, size);
    get_buffer(bc, pkt->data, size);
    pkt->stream_index = id;
    if (key_frame)
	pkt->flags |= PKT_FLAG_KEY;
Alex Beregszaszi's avatar
Alex Beregszaszi committed
591
    pkt->pts = pts;
592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607

    return 0;
}

static AVInputFormat nut_iformat = {
    "nut",
    "nut format",
    sizeof(NUTContext),
    nut_probe,
    nut_read_header,
    nut_read_packet,
//    nut_read_close,
//    nut_read_seek,
    .extensions = "nut",
};

608
#ifdef CONFIG_ENCODERS
609 610 611 612 613 614 615 616 617
static AVOutputFormat nut_oformat = {
    "nut",
    "nut format",
    "video/x-nut",
    "nut",
    sizeof(NUTContext),
#ifdef CONFIG_VORBIS
    CODEC_ID_VORBIS,
#elif defined(CONFIG_MP3LAME)
618
    CODEC_ID_MP3,
619
#else
620
    CODEC_ID_MP2, /* AC3 needs liba52 decoder */
621 622 623 624 625 626
#endif
    CODEC_ID_MPEG4,
    nut_write_header,
    nut_write_packet,
    nut_write_trailer,
};
627
#endif //CONFIG_ENCODERS
628 629 630 631

int nut_init(void)
{
    av_register_input_format(&nut_iformat);
632
#ifdef CONFIG_ENCODERS
633
    av_register_output_format(&nut_oformat);
634
#endif //CONFIG_ENCODERS
635 636
    return 0;
}