File: ffmpeg.h

package info (click to toggle)
pipewire 1.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 17,852 kB
  • sloc: ansic: 309,458; cpp: 2,812; xml: 407; python: 243; sh: 214; makefile: 176; pascal: 85
file content (20 lines) | stat: -rw-r--r-- 665 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef SPA_FFMPEG_H
#define SPA_FFMPEG_H

#include <stdint.h>
#include <stddef.h>

struct spa_dict;
struct spa_handle;
struct spa_support;
struct spa_handle_factory;

int spa_ffmpeg_dec_init(struct spa_handle *handle, const struct spa_dict *info,
			const struct spa_support *support, uint32_t n_support);
int spa_ffmpeg_enc_init(struct spa_handle *handle, const struct spa_dict *info,
			const struct spa_support *support, uint32_t n_support);

size_t spa_ffmpeg_dec_get_size(const struct spa_handle_factory *factory, const struct spa_dict *params);
size_t spa_ffmpeg_enc_get_size(const struct spa_handle_factory *factory, const struct spa_dict *params);

#endif