merge with master
[framework/osp/image-core.git] / src / inc / FMedia_Ffmpeg.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file                FMedia_Ffmpeg.h
20  * @brief               This is the header file for the ffmpeg related header inclusion.
21  *
22  * This header file contains the declarations of the header files for ffmpeg.
23  *
24  */
25 #ifndef _FMEDIA_INTERNAL_FFMPEG_H_
26 #define _FMEDIA_INTERNAL_FFMPEG_H_
27
28 #ifdef __cplusplus
29 #define __STDC_CONSTANT_MACROS
30 #ifdef _STDINT_H
31 #undef _STDINT_H
32 #endif
33 #include <stdint.h>
34 #endif
35
36 // #define attribute_deprecated
37
38 extern "C" {
39 #include <libavutil/avutil.h>
40 #include <libavutil/pixfmt.h>
41 #include <libavutil/imgutils.h>
42 #include <libavcodec/avcodec.h>
43 #include <libavformat/avformat.h>
44 #include <libswscale/swscale.h>
45 };
46
47 #include <FOspConfig.h>
48
49 namespace Tizen { namespace Media
50 {
51
52 struct _FfmpegDeleter
53 {
54         void operator() (AVCodecContext* pCodecCtxt) const
55         {
56                 if (pCodecCtxt != null)
57                 {
58                         avcodec_close(pCodecCtxt);
59                         av_free(pCodecCtxt);
60                         pCodecCtxt = null;
61                 }
62         }
63
64         void operator() (AVFrame* pFrame) const
65         {
66                 if (pFrame != null)
67                 {
68                         av_free(pFrame);
69                         pFrame = null;
70                 }
71         }
72
73         void operator() (AVPacket* pPacket) const
74         {
75                 if (pPacket != null)
76                 {
77                         av_free_packet(pPacket);
78                         delete pPacket;
79                         pPacket = null;
80                 }
81         }
82 };
83
84 _OSP_EXPORT_ extern struct _FfmpegDeleter ffmpegDeleter;
85
86 }} // Tizen::Media
87
88
89 #endif