/usr/include/avbin.h is in libavbin-dev 7-1.4build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 | /* avbin.h
* Copyright 2007 Alex Holkner
*
* This file is part of AVbin.
*
* AVbin is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* AVbin 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
* Lesser Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program. If not, see
* <http://www.gnu.org/licenses/>.
*/
/**
* @file
* AVbin functions and structures.
*/
/**
* @mainpage
*
* To open a file and prepare it for decoding, the general procedure is
* -# Initialise AVbin by calling avbin_init()
* -# Open a file using avbin_open_filename()
* -# Retrieve details of the file using avbin_file_info(). The resulting
* _AVbinFileInfo structure includes details such as:
* - Start time and duration
* - Number of audio and video streams
* - Metadata such as title, artist, etc.
* -# Examine details of each stream using avbin_stream_info(), passing
* in each stream index as an integer from 0 to n_streams. For
* video streams, the _AVbinStreamInfo structure includes
* - Video width and height, in pixels
* - Pixel aspect ratio, expressed as a fraction
* .
* For audio streams, the structure includes
* - Sample rate, in Hz
* - Bits per sample
* - Channels (monoaural, stereo, or multichannel surround)
* -# For each stream you intend to decode, call avbin_open_stream().
*
* When all information has been determined and the streams are open, you can
* proceed to read and decode the file:
* -# Call avbin_read() to read a packet of data from the file.
* -# Examine the resulting _AVbinPacket structure for the stream_index,
* which indicates how the packet should be decoded. If the stream is
* not one that you have opened, you can discard the packet and continue
* with step 1 again.
* -# To decode an audio packet, repeatedly pass the data within the packet
* to avbin_decode_audio(), until there is no data left to consume or an
* error is returned.
* -# To decode a video packet, pass the data within the packet to
* avbin_decode_video(), which will decode a single image in RGB format.
* -# Synchronise audio and video data by observing the
* _AVbinPacket::timestamp member.
*
* When decoding is complete, call avbin_close_stream() on each stream and
* avbin_close_file() on the open file.
*/
#ifndef AVBIN_H
#define AVBIN_H
#include <stdint.h>
/**
* Error-checked function result.
*/
typedef enum _AVbinResult {
AVBIN_RESULT_ERROR = -1,
AVBIN_RESULT_OK = 0
} AVbinResult;
/**
* Type of a stream; currently only video and audio streams are supported.
*/
typedef enum _AVbinStreamType {
AVBIN_STREAM_TYPE_UNKNOWN = 0,
AVBIN_STREAM_TYPE_VIDEO = 1,
AVBIN_STREAM_TYPE_AUDIO = 2
} AVbinStreamType;
/**
* The sample format for audio data.
*/
typedef enum _AVbinSampleFormat {
/** Unsigned byte */
AVBIN_SAMPLE_FORMAT_U8 = 0,
/** Signed 16-bit integer */
AVBIN_SAMPLE_FORMAT_S16 = 1,
/** Signed 24-bit integer */
AVBIN_SAMPLE_FORMAT_S24 = 2,
/** Signed 32-bit integer */
AVBIN_SAMPLE_FORMAT_S32 = 3,
/** 32-bit IEEE floating-point */
AVBIN_SAMPLE_FORMAT_FLOAT = 4
} AVbinSampleFormat;
/**
* Threshold of logging verbosity.
*/
typedef enum _AVbinLogLevel {
AVBIN_LOG_QUIET = -8,
AVBIN_LOG_PANIC = 0,
AVBIN_LOG_FATAL = 8,
AVBIN_LOG_ERROR = 16,
AVBIN_LOG_WARNING = 24,
AVBIN_LOG_INFO = 32,
AVBIN_LOG_VERBOSE = 40,
AVBIN_LOG_DEBUG = 48
} AVbinLogLevel;
/**
* Opaque open file handle.
*/
typedef struct _AVbinFile AVbinFile;
/**
* Opaque open stream handle.
*/
typedef struct _AVbinStream AVbinStream;
/**
* Point in time, or a time range; given in microseconds.
*/
typedef int64_t AVbinTimestamp;
/**
* File details. The info struct is filled in by avbin_get_file_info.
*/
typedef struct _AVbinFileInfo {
/**
* Size of this structure, in bytes. This must be filled in by the
* application before passing to AVbin.
*/
size_t structure_size;
/**
* Number of streams contained in the file.
*/
int n_streams;
/**
* Starting time of all streams.
*/
AVbinTimestamp start_time;
/**
* Duration of the file. Does not include the time given in start_time.
*/
AVbinTimestamp duration;
/**
* @name Metadata fields
*
* File metadata.
*
* Strings are NUL-terminated and may be omitted (the first character
* NUL) if the file does not contain appropriate information. The
* encoding of the strings is unspecified.
*/
/*@{*/
char title[512];
char author[512];
char copyright[512];
char comment[512];
char album[512];
int year;
int track;
char genre[32];
/*@}*/
} AVbinFileInfo;
/**
* Stream details.
*
* A stream is a single audio track or video. Most audio files contain one
* audio stream. Most video files contain one audio stream and one video
* stream. More than one audio stream may indicate the presence of multiple
* languages which can be selected (however at this time AVbin does not
* provide language information).
*/
typedef struct _AVbinStreamInfo {
/**
* Size of this structure, in bytes. This must be filled in by the
* application before passing to AVbin.
*/
size_t structure_size;
/**
* The type of stream; either audio or video.
*/
AVbinStreamType type;
union {
struct {
/**
* Width of the video image, in pixels. This is the width
* of actual video data, and is not necessarily the size the
* video is to be displayed at (see sample_aspect_num).
*/
unsigned int width;
/**
* Height of the video image, in pixels.
*/
unsigned int height;
/**
* Aspect-ratio of each pixel. The aspect is given by dividing
* sample_aspect_num by asmple_aspect_den.
*/
unsigned int sample_aspect_num;
unsigned int sample_aspect_den;
} video;
struct {
/**
* Data type of audio samples.
*/
AVbinSampleFormat sample_format;
/**
* Number of samples per second, in Hz.
*/
unsigned int sample_rate;
/**
* Number of bits per sample; typically 8 or 16.
*/
unsigned int sample_bits;
/**
* Number of interleaved audio channels. Typically 1 for
* monoaural, 2 for stereo. Higher channel numbers are used for
* surround sound, however AVbin does not currently provide a way
* to access the arrangement of these channels.
*/
unsigned int channels;
} audio;
};
} AVbinStreamInfo;
/**
* A single packet of stream data.
*
* The structure size must be initialised before passing to avbin_read. The
* data will point to a block of memory allocated by AVbin -- you must not
* free it. The data will be valid until the next time you call avbin_read,
* or until the file is closed.
*/
typedef struct _AVbinPacket {
/**
* Size of this structure, in bytes. This must be filled in by the
* application before passing to AVbin.
*/
size_t structure_size;
/**
* The time at which this packet is to be played. This can be used
* to synchronise audio and video data.
*/
AVbinTimestamp timestamp;
/**
* The stream this packet contains data for.
*/
int stream_index;
uint8_t *data;
size_t size;
} AVbinPacket;
/**
* Callback for log information.
*
* @param module The name of the module where this message originated
* @param level The log verbosity level of this message
* @param message The formatted message. The message may or may not contain
* newline characters.
*/
typedef void (*AVbinLogCallback)(const char *module,
AVbinLogLevel level,
const char *message);
/**
* @name Information about AVbin
*/
/**
* Get the linked version of AVbin.
*
* Version numbers are always integer, there are no "minor" or "patch"
* revisions. All AVbin versions are backward and forward compatible, modulo
* the required feature set.
*/
int avbin_get_version();
/**
* Get the SVN revision of FFmpeg.
*
* This is built into AVbin as it is built.
*/
int avbin_get_ffmpeg_revision();
/**
* Get the minimum audio buffer size, in bytes.
*/
size_t avbin_get_audio_buffer_size();
/**
* Determine if AVbin includes a requested feature.
*
* When future versions of AVbin include more functionality, that
* functionality can be tested for by calling this function. Currently there
* are no features to test for.
*
* @retval 1 The feature is present
* @retval 0 The feature is not present
*/
int avbin_have_feature(const char *feature);
/*@}*/
/**
* @name Global AVbin functions
*/
/**
* Initialise AVbin. This must be called before opening a file. Check the
* return value for success before continuing.
*/
AVbinResult avbin_init();
/**
* Set the log level verbosity.
*/
AVbinResult avbin_set_log_level(AVbinLogLevel level);
/**
* Set a custom log callback. By default, log messages are printed to
* standard error. Providing a NULL callback restores this default handler.
*/
AVbinResult avbin_set_log_callback(AVbinLogCallback callback);
/*@}*/
/**
* @name File handling functions
*/
/**
* Open a media file given its filename.
*
* @retval NULL if the file could not be opened, or is not of a recognised
* file format.
*/
AVbinFile *avbin_open_filename(const char *filename);
/**
* Close a media file.
*/
void avbin_close_file(AVbinFile *file);
/**
* Seek to a timestamp within a file.
*
* For video files, the first keyframe before the requested timestamp will be
* seeked to. For audio files, the first audio packet before the requested
* timestamp is used.
*/
AVbinResult avbin_seek_file(AVbinFile *file, AVbinTimestamp timestamp);
/**
* Get information about the opened file.
*
* The info struct must be allocated by the application and have its
* structure_size member filled in correctly. On return, the structure
* will be filled with file details.
*/
AVbinResult avbin_file_info(AVbinFile *file,
AVbinFileInfo *info);
/*@}*/
/**
* @name Stream functions
*/
/**
* Get information about a stream within the file.
*
* The info struct must be allocated by the application and have its
* structure_size member filled in correctly. On return, the structure
* will be filled with stream details.
*
* Ensure that stream_index is less than n_streams given in the file info.
*
* @param[in] file The file to examine
* @param[in] stream_index The number of the stream within the file
* @param[out] info Returned stream information
*/
AVbinResult avbin_stream_info(AVbinFile *file, int stream_index,
AVbinStreamInfo *info);
/**
* Open a stream for decoding.
*
* If you intend to decode audio or video from a file, you must open the
* stream first. The returned opaque handle should be passed to the relevant
* decode function when a packet for that stream is read.
*/
AVbinStream *avbin_open_stream(AVbinFile *file, int stream_index);
/**
* Close a file stream.
*/
void avbin_close_stream(AVbinStream *stream);
/*@}*/
/**
* @name Reading and decoding functions
*/
/**
* Read a packet from the file.
*
* The packet struct must be allocated by the application and have its
* structure_size member filled in correctly. On return, the structure
* will be filled with a packet of data. The actual data pointer within
* the packet must not be freed, and is valid until the next call to
* avbin_read.
*
* Applications should examine the packet's stream index to match it with
* an appropriate open stream handle, or discard it if none match. The packet
* data can then be passed to the relevant decode function.
*/
AVbinResult avbin_read(AVbinFile *file, AVbinPacket *packet);
/**
* Decode some audio data.
*
* You must ensure that data_out is at least as big as the minimum audio
* buffer size (see avbin_get_audio_buffer_size()).
*
* @param[in] stream The stream to decode.
* @param[in] data_in Incoming data, as read from a packet
* @param[in] size_in Size of data_in, in bytes
* @param[out] data_out Decoded audio data buffer, provided by application
* @param[out] size_out Number of bytes of data_out used.
*
* @return the number of bytes of data_in actually used. You should call
* this function repeatedly as long as the return value is greater
* than 0.
*
* @retval -1 if there was an error
*/
int avbin_decode_audio(AVbinStream *stream,
uint8_t *data_in, size_t size_in,
uint8_t *data_out, int *size_out);
/**
* Decode a video frame image.
*
* The size of data_out must be large enough to hold the entire image.
* This is width * height * 3 (images are always in 8-bit RGB format).
*
* @param[in] stream The stream to decode.
* @param[in] data_in Incoming data, as read from a packet
* @param[in] size_in Size of data_in, in bytes
* @param[out] data_out Decoded image data.
*
* @return the number of bytes of data_in actually used. Any remaining bytes
* can be discarded.
*
* @retval -1 if there was an error
*/
int avbin_decode_video(AVbinStream *stream,
uint8_t *data_in, size_t size_in,
uint8_t *data_out);
/*@}*/
#endif
|