Method: FFruby::File#year
- Defined in:
- ext/ffruby/ffrubyfile.c
#year ⇒ Object
Returns the year.
103 104 105 106 107 |
# File 'ext/ffruby/ffrubyfile.c', line 103
static VALUE ffrf_year(VALUE self)
{
AVFormatContext *fmt = ffrf_get_fmt(self);
return INT2NUM(fmt->year);
}
|