1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
/*****************************************************************
* gmerlin-avdecoder - a general purpose multimedia decoding library
*
* Copyright (c) 2001 - 2012 Members of the Gmerlin project
* gmerlin-general@lists.sourceforge.net
* http://gmerlin.sourceforge.net
*
* 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, see <http://www.gnu.org/licenses/>.
* *****************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <avdec_private.h>
typedef struct
{
int fd;
} fd_priv_t;
static int read_fd(bgav_input_context_t* ctx,
uint8_t * buffer, int len)
{
fd_priv_t * priv = ctx->priv;
return read(priv->fd, buffer, len);
}
static void close_fd(bgav_input_context_t * ctx)
{
fd_priv_t * priv = ctx->priv;
free(priv);
}
static const bgav_input_t bgav_input_fd =
{
.open = NULL, /* Not needed */
.read = read_fd,
.close = close_fd
};
bgav_input_context_t * bgav_input_open_fd(int fd, int64_t total_bytes, const char * mimetype)
{
bgav_input_context_t * ret;
fd_priv_t * priv;
ret = calloc(1, sizeof(*ret));
priv = calloc(1, sizeof(*priv));
ret->priv = priv;
ret->input = &bgav_input_fd;
priv->fd = fd;
ret->total_bytes = total_bytes;
if(mimetype)
gavl_dictionary_set_string(&ret->metadata, GAVL_META_MIMETYPE, mimetype);
return ret;
}
|