FFmpeg
formats.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2007 Bobby Bingham
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
22 #include "libavfilter/formats.c"
23 
24 #undef printf
25 
26 const int64_t avfilter_all_channel_layouts[] = {
95  -1
96 };
97 
98 int main(void)
99 {
100  const int64_t *cl;
101  char buf[512];
102  int i;
103  const char *teststrings[] ={
104  "blah",
105  "1",
106  "2",
107  "-1",
108  "60",
109  "65",
110  "1c",
111  "2c",
112  "-1c",
113  "60c",
114  "65c",
115  "2C",
116  "60C",
117  "65C",
118  "5.1",
119  "stereo",
120  "1+1+1+1",
121  "1c+1c+1c+1c",
122  "2c+1c",
123  "0x3",
124  };
125 
126  for (cl = avfilter_all_channel_layouts; *cl != -1; cl++) {
127  av_get_channel_layout_string(buf, sizeof(buf), -1, *cl);
128  printf("%s\n", buf);
129  }
130 
131  for ( i = 0; i<FF_ARRAY_ELEMS(teststrings); i++) {
132  int64_t layout = -1;
133  int count = -1;
134  int ret;
135  ret = ff_parse_channel_layout(&layout, &count, teststrings[i], NULL);
136 
137  printf ("%d = ff_parse_channel_layout(%016"PRIX64", %2d, %s);\n", ret ? -1 : 0, layout, count, teststrings[i]);
138  }
139 
140  return 0;
141 }
av_get_channel_layout_string
void av_get_channel_layout_string(char *buf, int buf_size, int nb_channels, uint64_t channel_layout)
Return a description of a channel layout.
Definition: channel_layout.c:217
AV_CH_BACK_LEFT
#define AV_CH_BACK_LEFT
Definition: channel_layout.h:53
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
AV_CH_LOW_FREQUENCY
#define AV_CH_LOW_FREQUENCY
Definition: channel_layout.h:52
avfilter_all_channel_layouts
const int64_t avfilter_all_channel_layouts[]
Definition: formats.c:26
AV_CH_STEREO_RIGHT
#define AV_CH_STEREO_RIGHT
See AV_CH_STEREO_LEFT.
Definition: channel_layout.h:68
NULL
#define NULL
Definition: coverity.c:32
main
int main(void)
Definition: formats.c:98
AV_CH_FRONT_CENTER
#define AV_CH_FRONT_CENTER
Definition: channel_layout.h:51
ff_parse_channel_layout
int ff_parse_channel_layout(int64_t *ret, int *nret, const char *arg, void *log_ctx)
Parse a channel layout or a corresponding integer representation.
Definition: formats.c:789
printf
printf("static const uint8_t my_array[100] = {\n")
layout
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel layout
Definition: filter_design.txt:18
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:271
AV_CH_BACK_CENTER
#define AV_CH_BACK_CENTER
Definition: channel_layout.h:57
AV_CH_FRONT_LEFT
#define AV_CH_FRONT_LEFT
Definition: channel_layout.h:49
AV_CH_SIDE_RIGHT
#define AV_CH_SIDE_RIGHT
Definition: channel_layout.h:59
ret
ret
Definition: filter_design.txt:187
channel_layout.h
AV_CH_FRONT_RIGHT
#define AV_CH_FRONT_RIGHT
Definition: channel_layout.h:50
formats.c
AV_CH_BACK_RIGHT
#define AV_CH_BACK_RIGHT
Definition: channel_layout.h:54
AV_CH_STEREO_LEFT
#define AV_CH_STEREO_LEFT
Stereo downmix.
Definition: channel_layout.h:67
AV_CH_SIDE_LEFT
#define AV_CH_SIDE_LEFT
Definition: channel_layout.h:58