Commit f6ed5df9 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'c0de9159'

* commit 'c0de9159':
  avdevice: Give names to anonymously typedeffed structs
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents cff61d59 c0de9159
......@@ -51,7 +51,7 @@
#include <stdint.h>
#include "avdevice.h"
typedef struct {
typedef struct VideoData {
AVClass *class;
int video_fd;
int tuner_fd;
......
......@@ -45,7 +45,7 @@
#include "avdevice.h"
#include "fbdev_common.h"
typedef struct {
typedef struct FBDevContext {
AVClass *class; ///< class for private options
int frame_size; ///< size in bytes of a grabbed frame
AVRational framerate_q; ///< framerate
......
......@@ -39,7 +39,7 @@
*/
#define FIFO_PACKETS_NUM 16
typedef struct {
typedef struct JackData {
AVClass *class;
jack_client_t * client;
int activated;
......
......@@ -46,7 +46,7 @@
#define AUDIO_BLOCK_SIZE 4096
typedef struct {
typedef struct AudioData {
AVClass *class;
int fd;
int sample_rate;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment