26 #include <dc1394/dc1394.h>
27 #elif HAVE_LIBDC1394_1
28 #include <libraw1394/raw1394.h>
29 #include <libdc1394/dc1394_control.h>
31 #define DC1394_VIDEO_MODE_320x240_YUV422 MODE_320x240_YUV422
32 #define DC1394_VIDEO_MODE_640x480_YUV411 MODE_640x480_YUV411
33 #define DC1394_VIDEO_MODE_640x480_YUV422 MODE_640x480_YUV422
34 #define DC1394_FRAMERATE_1_875 FRAMERATE_1_875
35 #define DC1394_FRAMERATE_3_75 FRAMERATE_3_75
36 #define DC1394_FRAMERATE_7_5 FRAMERATE_7_5
37 #define DC1394_FRAMERATE_15 FRAMERATE_15
38 #define DC1394_FRAMERATE_30 FRAMERATE_30
39 #define DC1394_FRAMERATE_60 FRAMERATE_60
40 #define DC1394_FRAMERATE_120 FRAMERATE_120
41 #define DC1394_FRAMERATE_240 FRAMERATE_240
58 raw1394handle_t handle;
59 dc1394_cameracapture camera;
61 #elif HAVE_LIBDC1394_2
63 dc1394camera_t *camera;
64 dc1394video_frame_t *
frame;
93 { 1875, DC1394_FRAMERATE_1_875 },
94 { 3750, DC1394_FRAMERATE_3_75 },
95 { 7500, DC1394_FRAMERATE_7_5 },
96 { 15000, DC1394_FRAMERATE_15 },
97 { 30000, DC1394_FRAMERATE_30 },
98 { 60000, DC1394_FRAMERATE_60 },
99 {120000, DC1394_FRAMERATE_120 },
100 {240000, DC1394_FRAMERATE_240 },
104 #define OFFSET(x) offsetof(dc1394_data, x)
105 #define DEC AV_OPT_FLAG_DECODING_PARAM
110 {
"video_size",
"A string describing frame size, such as 640x480 or hd720.",
OFFSET(video_size),
AV_OPT_TYPE_STRING, {.str =
"qvga"}, 0, 0,
DEC },
200 nodeid_t* camera_nodes;
209 dc1394->handle = dc1394_create_handle(0);
210 if (!dc1394->handle) {
214 camera_nodes = dc1394_get_camera_nodes(dc1394->handle, &res, 1);
215 if (!camera_nodes || camera_nodes[dc1394->channel] == DC1394_NO_CAMERA) {
216 av_log(c,
AV_LOG_ERROR,
"There's no IIDC camera on the channel %d\n", dc1394->channel);
219 res = dc1394_dma_setup_capture(dc1394->handle, camera_nodes[dc1394->channel],
221 FORMAT_VGA_NONCOMPRESSED,
227 dc1394_free_camera_nodes(camera_nodes);
228 if (res != DC1394_SUCCESS) {
233 res = dc1394_start_iso_transmission(dc1394->handle, dc1394->camera.node);
234 if (res != DC1394_SUCCESS) {
242 dc1394_dma_unlisten(dc1394->handle, &dc1394->camera);
243 dc1394_dma_release_camera(dc1394->handle, &dc1394->camera);
245 dc1394_destroy_handle(dc1394->handle);
257 if (dc1394_dma_done_with_buffer(&dc1394->camera) != DC1394_SUCCESS)
261 res = dc1394_dma_single_capture(&dc1394->camera);
263 if (res == DC1394_SUCCESS) {
264 pkt->
data = (
uint8_t *)dc1394->camera.capture_buffer;
281 dc1394_stop_iso_transmission(dc1394->handle, dc1394->camera.node);
282 dc1394_dma_unlisten(dc1394->handle, &dc1394->camera);
283 dc1394_dma_release_camera(dc1394->handle, &dc1394->camera);
284 dc1394_destroy_handle(dc1394->handle);
289 #elif HAVE_LIBDC1394_2
293 dc1394camera_list_t *list;
302 dc1394->d = dc1394_new();
303 if (dc1394_camera_enumerate(dc1394->d, &list) != DC1394_SUCCESS || !list) {
308 if (list->num == 0) {
310 dc1394_camera_free_list(list);
315 dc1394->camera = dc1394_camera_new (dc1394->d, list->ids[0].guid);
321 dc1394_camera_free_list (list);
324 if (dc1394->camera->bmode_capable>0) {
325 dc1394_video_set_operation_mode(dc1394->camera, DC1394_OPERATION_MODE_1394B);
326 i = DC1394_ISO_SPEED_800;
328 i = DC1394_ISO_SPEED_400;
331 for (res = DC1394_FAILURE; i >= DC1394_ISO_SPEED_MIN && res != DC1394_SUCCESS; i--) {
332 res=dc1394_video_set_iso_speed(dc1394->camera, i);
334 if (res != DC1394_SUCCESS) {
339 if (dc1394_video_set_mode(dc1394->camera, fmt->
frame_size_id) != DC1394_SUCCESS) {
344 if (dc1394_video_set_framerate(dc1394->camera,fps->
frame_rate_id) != DC1394_SUCCESS) {
348 if (dc1394_capture_setup(dc1394->camera, 10, DC1394_CAPTURE_FLAGS_DEFAULT)!=DC1394_SUCCESS) {
353 if (dc1394_video_set_transmission(dc1394->camera, DC1394_ON) !=DC1394_SUCCESS) {
360 dc1394_capture_stop(dc1394->camera);
361 dc1394_video_set_transmission(dc1394->camera, DC1394_OFF);
362 dc1394_camera_free (dc1394->camera);
364 dc1394_free(dc1394->d);
375 if (dc1394_capture_enqueue(dc1394->camera, dc1394->frame) != DC1394_SUCCESS)
379 res = dc1394_capture_dequeue(dc1394->camera, DC1394_CAPTURE_POLICY_WAIT, &dc1394->frame);
380 if (res == DC1394_SUCCESS) {
382 pkt->
size = dc1394->frame->image_bytes;
398 dc1394_video_set_transmission(dc1394->camera, DC1394_OFF);
399 dc1394_capture_stop(dc1394->camera);
400 dc1394_camera_free(dc1394->camera);
401 dc1394_free(dc1394->d);
411 .read_packet = dc1394_v2_read_packet,
412 .read_close = dc1394_v2_close,
424 .read_packet = dc1394_v1_read_packet,
425 .read_close = dc1394_v1_close,
packed YUV 4:2:2, 16bpp, Cb Y0 Cr Y1
static int dc1394_read_common(AVFormatContext *c, const struct dc1394_frame_format **select_fmt, const struct dc1394_frame_rate **select_fps)
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
static enum AVPixelFormat pix_fmt
int av_parse_video_rate(AVRational *rate, const char *arg)
Parse str and store the detected values in *rate.
int av_parse_video_size(int *width_ptr, int *height_ptr, const char *str)
Parse str and put in width_ptr and height_ptr the detected values.
#define LIBAVUTIL_VERSION_INT
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
int index
stream index in AVFormatContext
static const struct dc1394_frame_format dc1394_frame_formats[]
char * framerate
Set by a private option.
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
int av_image_get_buffer_size(enum AVPixelFormat pix_fmt, int width, int height, int align)
Return the size in bytes of the amount of data required to store an image with the given parameters...
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static const struct dc1394_frame_rate dc1394_frame_rates[]
enum AVMediaType codec_type
General type of the encoded data.
AVRational avg_frame_rate
Average framerate.
int flags
A combination of AV_PKT_FLAG values.
common internal API header
char filename[1024]
input or output filename
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
static int read_header(FFV1Context *f)
char * pixel_format
Set by a private option.
#define AV_LOG_INFO
Standard information.
static const AVOption options[]
static const AVClass libdc1394_class
Describe the class of an AVClass context structure.
Rational number (pair of numerator and denominator).
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
int frame_rate
frames per 1000 seconds (fps * 1000)
char * video_size
String describing video size, set by a private option.
channel
Use these values when setting the channel map with ebur128_set_channel().
void * priv_data
Format private data.
AVCodecParameters * codecpar
enum AVPixelFormat av_get_pix_fmt(const char *name)
Return the pixel format corresponding to name.
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
packed YUV 4:1:1, 12bpp, Cb Y0 Y1 Cr Y2 Y3
AVPixelFormat
Pixel format.
This structure stores compressed data.
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...