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
|
/*
* mfc codec encoding example application
* Andrzej Hajda <a.hajda@samsung.com>
*
* Output file device.
*
* Copyright 2012 Samsung Electronics Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include "common.h"
#include "out_file.h"
#include "func_dev.h"
int out_file_write(struct io_dev *dev, int nbufs, char **bufs, int *lens)
{
return write(dev->fd, bufs[0], lens[0]);
}
static struct io_dev_ops out_file_ops = { .write = out_file_write,
.req_bufs = func_req_bufs,
.enq_buf = func_enq_buf,
.deq_buf = func_deq_buf,
.destroy = func_destroy
};
struct io_dev *out_file_create(char const *name)
{
struct io_dev *dev;
dev = malloc(sizeof(*dev));
memzero(*dev);
dev->fd = open(name, O_CREAT | O_TRUNC | O_WRONLY, 0666);
dev->io[DIR_IN].type = IO_FUNC;
dev->io[DIR_OUT].type = IO_NONE;
dev->ops = &out_file_ops;
return dev;
}
|