diff options
author | Andreas Regel <andreas.regel@powarman.de> | 2004-01-28 19:11:00 +0100 |
---|---|---|
committer | Andreas Regel <andreas.regel@powarman.de> | 2004-01-28 19:11:00 +0100 |
commit | 64fe6b70d0a5b34a80ff458fbf1664018d5c0182 (patch) | |
tree | 4fe036adaf90fef0d0dc910b84dbc11269e40008 /libdvbmpeg/ringbuffy.h | |
parent | 310f5b2a62343d0c9b7624c09efe35828785ef26 (diff) | |
download | vdr-plugin-osdpip-64fe6b70d0a5b34a80ff458fbf1664018d5c0182.tar.gz vdr-plugin-osdpip-64fe6b70d0a5b34a80ff458fbf1664018d5c0182.tar.bz2 |
Release version 0.0.3v0.0.3
- new TS->ES remuxer: now using VDR's cRemux for TS->PES and some own code
for PES->ES
- now using libavcodec from ffmpeg instead of mpeg2dec
- frames to decode configurable (I-frames, I-/P-frames, all frames)
- frame dropping configurable
- added new color depths:
- 128 shades greyscale
- 128 colors with variable palette using Wu's quantizer (patch needed)
- changed osd size setting to 6 configurable values
Diffstat (limited to 'libdvbmpeg/ringbuffy.h')
-rw-r--r-- | libdvbmpeg/ringbuffy.h | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/libdvbmpeg/ringbuffy.h b/libdvbmpeg/ringbuffy.h deleted file mode 100644 index 16011d7..0000000 --- a/libdvbmpeg/ringbuffy.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - Ringbuffer Implementation for gtvscreen - - Copyright (C) 2000 Marcus Metzler (mocm@metzlerbros.de) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program 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 General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -*/ - -#ifndef RINGBUFFY_H -#define RINGBUFFY_H - -#include <stdio.h> -#include <stdlib.h> -#include <unistd.h> - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -#define FULL_BUFFER -1000 -typedef struct ringbuffy{ - int read_pos; - int write_pos; - int size; - char *buffy; -} ringbuffy; - -int ring_init (ringbuffy *rbuf, int size); -void ring_destroy(ringbuffy *rbuf); -int ring_write(ringbuffy *rbuf, char *data, int count); -int ring_read(ringbuffy *rbuf, char *data, int count); -int ring_write_file(ringbuffy *rbuf, int fd, int count); -int ring_read_file(ringbuffy *rbuf, int fd, int count); -int ring_rest(ringbuffy *rbuf); -int ring_peek(ringbuffy *rbuf, char *data, int count, long off); - -#ifdef __cplusplus -} -#endif /* __cplusplus */ -#endif /* RINGBUFFY_H */ |