123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- /*
- * dv.h
- *
- * Copyright (C) Charles 'Buck' Krasic - April 2000
- * Copyright (C) Erik Walthinsen - April 2000
- *
- * This file is part of libdv, a free DV (IEC 61834/SMPTE 314M)
- * codec.
- *
- * libdv is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser Public License as published by
- * the Free Software Foundation; either version 2.1, or (at your
- * option) any later version.
- *
- * libdv 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 Public License for more details.
- *
- * You should have received a copy of the GNU Lesser Public License
- * along with libdv; see the file COPYING. If not, write to
- * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- * The libdv homepage is http://libdv.sourceforge.net/.
- */
- /** @file
- * @ingroup decoder
- * @ingroup encoder
- * @brief Interface for @link decoder DV Decoder @endlink
- */
- /** @addtogroup decoder DV Decoder
- * @{
- */
- #ifndef DV_H
- #define DV_H
- #include <libdv/dv_types.h>
- #include <stdio.h>
- #include <inttypes.h>
- #include <time.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* Main API */
- extern dv_decoder_t *dv_decoder_new (int ignored, int clamp_luma,
- int clamp_chroma);
- extern void dv_decoder_free (dv_decoder_t*);
- extern void dv_init (int clamp_luma, int clamp_chroma);
- extern void dv_cleanup (void);
- extern void dv_reconfigure (int clamp_luma, int clamp_chroma);
- extern int dv_parse_header (dv_decoder_t *dv, const uint8_t *buffer);
- extern void dv_parse_packs (dv_decoder_t *dv, const uint8_t *buffer);
- extern void dv_decode_full_frame(dv_decoder_t *dv,
- const uint8_t *buffer, dv_color_space_t color_space,
- uint8_t **pixels, int *pitches);
- extern int dv_decode_full_audio(dv_decoder_t *dv,
- const uint8_t *buffer, int16_t **outbufs);
- extern int dv_set_audio_correction (dv_decoder_t *dv, int method);
- extern FILE *dv_set_error_log (dv_decoder_t *dv, FILE *errfile);
- extern void dv_report_video_error (dv_decoder_t *dv, uint8_t *data);
- #define LIBDV_HAS_SAMPLE_CALCULATOR
- extern int dv_calculate_samples( dv_encoder_t *, int frequency,
- int frame_count );
- /*@}*/
- /** @addtogroup encoder
- * @{
- */
- extern dv_encoder_t *dv_encoder_new (int rem_ntsc_setup, int clamp_luma,
- int clamp_chroma);
- extern void dv_encoder_free (dv_encoder_t* dv_enc);
- extern int dv_encode_full_frame(dv_encoder_t *dv_enc, uint8_t **in,
- dv_color_space_t color_space, uint8_t *out);
-
- extern int dv_encode_full_audio(dv_encoder_t *dv_enc, int16_t **pcm,
- int channels, int frequency, uint8_t *frame);
- extern void dv_encode_metadata(uint8_t *target, int isPAL, int is16x9,
- time_t *datetime, int frame);
- extern void dv_encode_timecode(uint8_t *target, int isPAL, int frame);
- /*@}*/
- /** @addtogroup decoder
- * @{
- */
- /* Low level API */
- extern int dv_parse_video_segment(dv_videosegment_t *seg, unsigned int quality);
- extern void dv_decode_video_segment(dv_decoder_t *dv, dv_videosegment_t *seg, unsigned int quality);
- extern void dv_render_video_segment_rgb(dv_decoder_t *dv, dv_videosegment_t *seg,
- uint8_t **pixels, int *pitches);
- extern void dv_render_video_segment_yuv(dv_decoder_t *dv, dv_videosegment_t *seg,
- uint8_t **pixels, int *pitches);
- extern int dv_encode_videosegment( dv_encoder_t *dv_enc,
- dv_videosegment_t *videoseg, uint8_t *vsbuffer);
- /* ---------------------------------------------------------------------------
- */
- extern int dv_set_quality (dv_decoder_t *dv, int quality),
- dv_is_PAL (dv_decoder_t *dv);
- /* ---------------------------------------------------------------------------
- * functions based on vaux data
- * return value: <0 unknown, 0 no, >0 yes
- */
- extern int dv_frame_changed (dv_decoder_t *dv),
- dv_frame_is_color (dv_decoder_t *dv),
- dv_system_50_fields (dv_decoder_t *dv),
- dv_format_normal (dv_decoder_t *dv),
- dv_format_wide (dv_decoder_t *dv),
- dv_format_letterbox (dv_decoder_t *dv),
- dv_is_progressive (dv_decoder_t *dv),
- dv_get_vaux_pack (dv_decoder_t *dv, uint8_t pack_id, uint8_t *pack_data);
- /* ---------------------------------------------------------------------------
- * functions based on ssyb data
- * return value: 0 not-present, >0 ok
- */
- extern int dv_get_timestamp (dv_decoder_t *dv, char *tstprt),
- dv_get_recording_datetime (dv_decoder_t *dv, char *dtptr),
- dv_get_timestamp_int (dv_decoder_t *dv, int *timestamp),
- dv_get_recording_datetime_tm (dv_decoder_t *dv, struct tm *rec_dt),
- dv_get_ssyb_pack (dv_decoder_t *dv, uint8_t pack_id, uint8_t *pack_data);
- /* ---------------------------------------------------------------------------
- * functions based on aaux data
- */
- extern int dv_is_new_recording (dv_decoder_t *dv, const uint8_t *buffer),
- dv_is_normal_speed (dv_decoder_t *dv),
- dv_set_mixing_level (dv_decoder_t *dv, int new_value);
- /* ---------------------------------------------------------------------------
- * audio query functions
- */
- extern int dv_get_num_samples (dv_decoder_t *dv),
- dv_get_num_channels (dv_decoder_t *dv),
- dv_get_raw_samples (dv_decoder_t *dv, int chan),
- dv_is_4ch (dv_decoder_t *dv),
- dv_get_frequency (dv_decoder_t *dv);
- #ifdef __cplusplus
- }
- #endif
- #endif // DV_H
- /*@}*/
|