1 /* GStreamer 2 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu> 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Library General Public 6 * License as published by the Free Software Foundation; either 7 * version 2 of the License, or (at your option) any later version. 8 * 9 * This library is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * Library General Public License for more details. 13 * 14 * You should have received a copy of the GNU Library General Public 15 * License along with this library; if not, write to the 16 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 17 * Boston, MA 02110-1301, USA. 18 */ 19 20 /* First, include the header file for the plugin, to bring in the 21 * object definition and other useful things. 22 */ 23 24 #ifndef __GST_FFMPEGAUDENC_H__ 25 #define __GST_FFMPEGAUDENC_H__ 26 27 #include <gst/gst.h> 28 #include <gst/audio/gstaudioencoder.h> 29 #include <libavcodec/avcodec.h> 30 31 G_BEGIN_DECLS 32 33 typedef struct _GstFFMpegAudEnc GstFFMpegAudEnc; 34 35 struct _GstFFMpegAudEnc 36 { 37 GstAudioEncoder parent; 38 39 AVCodecContext *context; 40 AVCodecContext *refcontext; 41 gboolean opened; 42 gboolean need_reopen; 43 44 AVFrame *frame; 45 46 GstAudioChannelPosition ffmpeg_layout[64]; 47 gboolean needs_reorder; 48 }; 49 50 typedef struct _GstFFMpegAudEncClass GstFFMpegAudEncClass; 51 52 struct _GstFFMpegAudEncClass 53 { 54 GstAudioEncoderClass parent_class; 55 56 AVCodec *in_plugin; 57 GstPadTemplate *srctempl, *sinktempl; 58 }; 59 60 #define GST_TYPE_FFMPEGAUDENC \ 61 (gst_ffmpegaudenc_get_type()) 62 #define GST_FFMPEGAUDENC(obj) \ 63 (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_FFMPEGAUDENC,GstFFMpegAudEnc)) 64 #define GST_FFMPEGAUDENC_CLASS(klass) \ 65 (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_FFMPEGAUDENC,GstFFMpegAudEncClass)) 66 #define GST_IS_FFMPEGAUDENC(obj) \ 67 (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_FFMPEGAUDENC)) 68 #define GST_IS_FFMPEGAUDENC_CLASS(klass) \ 69 (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_FFMPEGAUDENC)) 70 71 G_END_DECLS 72 73 #endif /* __GST_FFMPEGAUDENC_H__ */ 74